我正在将我的Android应用程序从eclipse转换为Android Studio。当我构建gradle时没有错误。但是在运行应用程序时,我遇到了以下错误:
<php if(!empty($_POST['first_name'])){ echo $first_name; } ?>
我尝试多次清理/重建项目,但我总是遇到同样的错误。 我也尝试使用终端命令./gradlew来清理它,但它无法正常工作。
Android Studio版本:2.1 Gradle版本:2.1.2 jdk版本:1.8 Android SDK Build-Tools:24
build.gradle code:
Error:Execution failed for task ':transformClassesWithJarMergingForDebug'.
> com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: org/xmlpull/v1/XmlPullParserException.class
答案 0 :(得分:1)
我解决了我的错误:
关注我的build.gradle代码:
apply plugin: 'com.android.application'
dependencies {
compile 'com.android.support:appcompat-v7:24.0.0'
compile('com.google.android.gms:play-services:9.0.2')
compile ('com.google.android.gms:play-services-analytics:9.0.2')
compile files('libs/ksoap2-android-assembly-2.5.8-jar-with-dependencies.jar')
compile "com.android.support:design:24.0.0"
compile 'com.android.support:multidex:1.0.1'
compile files('libs/mail.jar')
compile files('libs/activation.jar')
compile files('libs/gcm.jar')
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
}
}
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "com.expedite.apps.vedant"
minSdkVersion 9
targetSdkVersion 23
versionCode 1
versionName "1.0"
multiDexEnabled true
}
packagingOptions {
exclude 'META-INF/NOTICE.txt' // will not include NOTICE file
exclude 'META-INF/LICENSE.txt' // will not include LICENSE file
exclude 'META-INF/LICENSE-FIREBASE.txt'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dexOptions {
javaMaxHeapSize "4g"
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
// Move the tests to tests/java, tests/res, etc...
instrumentTest.setRoot('tests')
// Move the build types to build-types/<type>
// For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
// This moves them out of them default location under src/<type>/... which would
// conflict with src/ being used by the main source set.
// Adding new build types or product flavors should be accompanied
// by a similar customization.
debug.setRoot('build-types/debug')
release.setRoot('build-types/release')
}
}
在AndroidManifest.xml中添加这一行 机器人:名称= “android.support.multidex.MultiDexApplication”
<application
.....
android:name="android.support.multidex.MultiDexApplication">
</application>
答案 1 :(得分:0)
在构建中添加一些代码
我正在添加一些像包选项和构建类型......
apply plugin: 'com.android.application'
dependencies {
compile 'com.android.support:appcompat-v7:24.0.0'
compile files('libs/ksoap2-android-assembly-2.5.8-jar-with-dependencies.jar')
compile 'com.google.android.gms:play-services:+'
compile files('libs/libGoogleAnalyticsServices.jar')
compile "com.android.support:support-v4:24.0.0"
compile "com.android.support:design:24.0.0"
compile 'com.android.support:multidex:1.0.1'
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
}
}
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "com.expedite.apps.vedant"
minSdkVersion 9
targetSdkVersion 23
versionCode 1
versionName "1.0"
multiDexEnabled true
}
packagingOptions {
exclude 'META-INF/NOTICE.txt' // will not include NOTICE file
exclude 'META-INF/LICENSE.txt' // will not include LICENSE file
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
// Move the tests to tests/java, tests/res, etc...
instrumentTest.setRoot('tests')
// Move the build types to build-types/<type>
// For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
// This moves them out of them default location under src/<type>/... which would
// conflict with src/ being used by the main source set.
// Adding new build types or product flavors should be accompanied
// by a similar customization.
debug.setRoot('build-types/debug')
release.setRoot('build-types/release')
}
}