今天编译一个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…
有时候我们可能需要将项目的版本降低,比如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"…
今天编译一个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-froyo Using 1.7 requi…
Refer :http://www.cnblogs.com/mengfanrong/p/3745475.html Righ click on your project > properties > Java compiler > enable "project specific settings" Set Compiler compliance level to 1.6 re Build your project…
解决的方案是将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 studio的童鞋可能或多或少会存在一些问题,比如出现Error:compileSdkVersion android-x requires compiling with JDK 7的问题,虽然自己已经下载了jdk7或者jdk8但还是提示这样的错误,这是为什么呢?原来我们是我们的 jdk的路径没有设置好或者我们的 jdk默认设置成jdk6. 所以,我们要让android studio正常工作,就要重置我们的 jdk 的路径,所需要的步骤如下图所示.(jdk7默认的下载路径为/L…
New in Android 4.4 KitKat 本文是一个概览,关于KitKat,也即Android4.4的新东西,先是功能型的,之后是设计上的. 很多特性本文并没有提到,很多提到的特性也只是简短的一句话说明,详见文后的参考链接. New NFC capabilities through Host Card Emulation  近场通信.   Printing Framework可以给app加上打印功能.   Storage access framework  document provi…
Having V8 as the JavaScript engine for the new web view, the JavaScript performance if much better, besides general performance on CSS thanks to hardware acceleration Android 4.4 KitKat, the browser and the Chrome WebView…
原文地址:Getting Your SMS Apps Ready for KitKat 发送和接收短信是手机最基本的功能,很多的开发者也开发了很多成功的应用来增强Android这一方面的体验.你们当中的某些人可能基于隐藏API来开发短信应用,这种做法我们是不推荐的,因为隐藏API可能会有改变或者被移除,这样新的设备可能无法通过兼容性测试.因此,为了让你能够用到全面支持的API集来开发短信应用,以及短信应用体验的可预见性,Android 4.4 (KitKat)公开了现有的API并且增加了默认短信…
原文地址:http://blog.csdn.net/jinzhuojun/article/details/17293325 Android 4.1(Jelly Bean)引入了Vsync(Vertical Syncronization)用于渲染同步,使得App UI和SurfaceFlinger可以按硬件产生的VSync节奏来进行工作.关于VSync的介绍详见博文http://www.androidpolice.com/2012/07/12/getting-to-know-android-4-1…