android-'Using 1.7 requires compiling with Android 4.4 (KitKat); currently using API 8'

解决的方案是将jdk1.7制定的版本定制为jdk.6.即

在eclipse中,右键项目->Properties->Java Compiler->enable "project specific settings->Set Compiler compliance level to 1.6 re Build your project,选择1.6版本,即可.

android-'Using 1.7 requires compiling with Android 4.4 (KitKat); currently using API 8'

时间: 2024-08-26 12:38:55

android-'Using 1.7 requires compiling with Android 4.4 (KitKat); currently using API 8'的相关文章

Using 1.7 requires compiling with Android 4.4 (KitKat); currently using API 10

今天编译一个project,我设置为api 14,可是编译报错: Using 1.7 requires compiling with Android 4.4 (KitKat); currently using API 4 參考 http://stackoverflow.com/questions/22552199/unable-to-build-android-project-using-facebook-sdk-against-android-2-2-froyoUsing 1.7 requir

解决Using 1.7 requires compiling with Android 4.4 (KitKat); currently using API 4

有时候我们可能需要将项目的版本降低,比如4.4降低到2.2这样的,可能会遇到类似于这样的错误 Using 1.7 requires compiling with Android 4.4 (KitKat); currently using API 4 总之就是jdk的问题了,解决方案是:Righ click on your project > properties > Java compiler > enable "project specific settings"

Using 1.* requires compiling with Android **; currently using API **

Using 1.7 requires compiling with Android 4.4 (KitKat); currently using API 18 这句话的意思是: 的eclipse用的jre的版本是1.7(7),在这个前提下你必须更改android的平台版本为4.4以上的版本  当前用的是api18(4.3) 解决方法: 1:将工程的android api的平台版本号提升到大于4.4即可 2:更改 单个工程的jre版本

Using 1 7 requires compiling with Android 4 4 KitKat curr

今天编译一个project,我设置为api 14,可是编译报错: Using 1.7 requires compiling with Android 4.4 (KitKat); currently using API 4 參考 http://stackoverflow.com/questions/22552199/unable-to-build-android-project-using-facebook-sdk-against-android-2-2-froyoUsing 1.7 requir

android studio出现Error:compileSdkVersion android-x requires compiling with JDK 7问题

初装Android studio的童鞋可能或多或少会存在一些问题,比如出现Error:compileSdkVersion android-x requires compiling with JDK 7的问题,虽然自己已经下载了jdk7或者jdk8但还是提示这样的错误,这是为什么呢?原来我们是我们的 jdk的路径没有设置好或者我们的 jdk默认设置成jdk6. 所以,我们要让android studio正常工作,就要重置我们的 jdk 的路径,所需要的步骤如下图所示.(jdk7默认的下载路径为/L

Android开发学习---template requires a minimum SDK version of at least 7,build target API version of 14

adt 22.6.3的bug 当adt更新到22.6.3,其编辑器中最低支持api7,即android 2.1,这里可能是google故意这么做的,也可能是其bug.其target sdk 和compile sdk最低都为14,即anroid 4.0,这里建议都设为最高的api 19,即android 4.4;否则会一直报错,类似错误如下: This template requires a minimum SDK version of at least 7, and the current mi

Eclipse编译Android项目时出现的问题:Android requires compiler compliance level 5.0 or 6.0. Found '1.8' instead.

Consle: Android requires compiler compliance level 5.0 or 6.0. Found '1.8' instead. Please use Android Tools > Fix Project Properties. 然而,按照提示的方法,右键项目->Android Tools->Fix Project Properties时,发现并没有卵用... 我的解决方式是: 右键项目->Properties,把 JavaCompiler

Android基础入门教程——8.1.3 Android中的13种Drawable小结 Part 3

Android基础入门教程--8.1.3 Android中的13种Drawable小结 Part 3 标签(空格分隔): Android基础入门教程 本节引言: 本节我们来把剩下的四种Drawable也学完,他们分别是: LayerDrawable,TransitionDrawable,LevelListDrawable和StateListDrawable, 依旧贴下13种Drawable的导图: 1.LayerDrawable 层图形对象,包含一个Drawable数组,然后按照数组对应的顺序来

Android基础入门教程——8.1.2 Android中的13种Drawable小结 Part 2

Android基础入门教程--8.1.2 Android中的13种Drawable小结 Part 2 标签(空格分隔): Android基础入门教程 本节引言: 本节我们继续来学习Android中的Drawable资源,上一节我们学习了: ColorDrawable:NinePatchDrawable: ShapeDrawable:GradientDrawable!这四个Drawable~ 而本节我们继续来学习接下来的五个Drawable,他们分别是: BitmapDrawable:Insert