简体   繁体   English

生成签名APK错误

[英]Generate Signed APK error

When I go to build - Generate Signed APK I get this error: 当我建立-生成签名APK时,出现以下错误:

Error:Execution failed for task ':app:compileReleaseJavaWithJavac'. 错误:任务':app:compileReleaseJavaWithJavac'的执行失败。

compileSdkVersion 'android-24' requires JDK 1.8 or later to compile. compileSdkVersion'android-24'需要JDK 1.8或更高版本进行编译。

What is the solution? 解决办法是什么?

This could be a lot of things. 这可能是很多事情。 For starters, try File -> Invalidate Cache / restart . 对于初学者,请尝试File-> Invalidate Cache / restart Doing this is always my first step. 这样做始终是我的第一步。 If that doesn't work, go into Project Structure and make sure your Project SDK is correct and that you have it properly linked to your JDK. 如果这不起作用,请进入“ 项目结构” ,并确保您的Project SDK是正确的,并且已正确将其链接到JDK。 Go into Facets and make sure the Compile Sdk Version is also correct. 进入方面 ,并确保“ 编译SDK版本”也正确。 Also make sure your Java Compiler is correct. 另外,请确保您的Java编译器正确。 you can find that under Settings -> Build, Execution, Deployment -> Compiler -> Java Compiler . 您可以在设置->构建,执行,部署->编译器-> Java编译器下找到该代码

I'm guessing you're using Android Studio as an IDE, correct? 我猜您正在使用Android Studio作为IDE,对吗? In that case, make sure you're using the latest JDK 1.8 (check your environment settings). 在这种情况下,请确保您使用的是最新的JDK 1.8(检查您的环境设置)。

Update your JDK here: http://www.oracle.com/technetwork/java/javase/downloads/index.html 在此处更新您的JDK: http : //www.oracle.com/technetwork/java/javase/downloads/index.html

You need newer JDK to compile the APK 您需要更新的JDK才能编译APK

You need to use the Java8 JDK if you want to use the Android API 24 as your compile SDK. 如果要使用Android API 24作为编译SDK,则需要使用Java8 JDK。 In order to do so (assuming you are using Android Studio) go to "File/Project Structure" and then to the "SDK Location" option. 为此(假设您使用的是Android Studio),请转到“文件/项目结构”,然后转到“ SDK位置”选项。 There in the "JDK location" field put the path of your Java8 JDK. 在“ JDK位置”字段中,放置Java8 JDK的路径。 When you are ready press "OK" and rebuild your project. 准备就绪后,按“确定”并重新生成项目。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM