我一直试图将我的第一个Android JavaFX应用程序上传到Google Play商店,但它说调试已启用,我无法继续上传。 我一直在使用Eclipse和JavaFXPorts的Gluon插件以及" androidRelease"在Gradle构建选项中。 这是我的build.gradle:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.0.0-b10'
}
}
apply plugin: 'org.javafxports.jfxmobile'
repositories {
jcenter()
}
mainClassName = 'com.eg0.***'
jfxmobile {
android {
compileSdkVersion = 25
manifest = 'src/android/AndroidManifest.xml'
androidSdk = 'C:/Users/Eg0/AppData/Local/Android/Sdk'
signingConfig {
storeFile file('***.keystore')
storePassword '***'
keyAlias '***'
keyPassword '***'
}
}
}
这是我的清单文件:
<?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.eg0" android:versionCode="1" android:versionName="1.0">
<supports-screens android:xlargeScreens="true"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="21"/>
<application android:label="***" android:name="android.support.multidex.MultiDexApplication" android:icon="@mipmap/ic_launcher">
<activity android:name="javafxports.android.FXActivity" android:label="Windows Mixer" android:configChanges="orientation|screenSize" android:screenOrientation="portrait">
<meta-data android:name="main.class" android:value="com.eg0.***"/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:1)
我通过在清单文件中添加android:debuggable =“false”标志来解决。即使文档说如果没有指定,默认情况下它也是假的。它现在还给我一个警告说“警告:AndroidManifest.xml已经定义了debuggable(在http://schemas.android.com/apk/res/android中);使用清单中的现有值。”,但我想这一直是问题所在。