签名发布 apk 时无法将我的应用程序安装到我的 phone
Can't install my application to my phone when sign release apk
我尝试将我的应用程序安装到我的 phone 但我在注册为发行版 apk 时收到应用程序未安装错误
这是我的 gradle 应用程序
apply plugin: 'com.android.application'
android {
signingConfigs {
signingConfigs {
keyAlias 'newv'
keyPassword 'key'
storeFile file('/dir')
storePassword 'pass'
}}
我的应用程序有两个模块,在我从包选项中获取的文件下方
packagingOptions {
pickFirst 'lib/armeabi-v7a/libc++_shared.so'
pickFirst 'lib/armeabi/libc++_shared.so'
pickFirst 'lib/arm64-v8a/libc++_shared.so'
pickFirst 'lib/x86/libc++_shared.so'
pickFirst 'lib/x86_64/libc++_shared.so'
pickFirst 'lib/mips/libc++_shared.so'
pickFirst 'lib/mips64/libc++_shared.so'
}
dexOptions {
maxProcessCount 8
javaMaxHeapSize "1g"
preDexLibraries true
}
compileSdkVersion 26
buildToolsVersion "26.0.1"
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "com.sadeem.mobiletv"
minSdkVersion 14
targetSdkVersion 21
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
debug {
shrinkResources false
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
jniDebuggable true
}
release {
shrinkResources false
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
jniDebuggable false
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile project(':libvlc')
compile project(':api')
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support:design:26.+'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:support-v4:26.+'
compile 'com.android.support:recyclerview-v7:26.+'
testCompile 'junit:junit:4.12'
}
我的 gradle 模块一是
configurations.maybeCreate("default")
artifacts.add("default", 文件('api-release.aar'))
还有两个是
configurations.maybeCreate("default")
artifacts.add("default", 文件('libvlc-3.0.0-null.aar'))
我不知道为什么在发布 apk 后不安装任何人的帮助
看起来是 Android 版本问题。在生成签名的 APK 文件时尝试 select 签名版本 复选框,即 v1 和 v2.或者尝试卸载您应用的早期版本(例如调试 APK)。
我确定您的 phone 上安装了调试 apk。请卸载调试apk,然后安装调试apk。
我尝试将我的应用程序安装到我的 phone 但我在注册为发行版 apk 时收到应用程序未安装错误 这是我的 gradle 应用程序
apply plugin: 'com.android.application'
android {
signingConfigs {
signingConfigs {
keyAlias 'newv'
keyPassword 'key'
storeFile file('/dir')
storePassword 'pass'
}}
我的应用程序有两个模块,在我从包选项中获取的文件下方
packagingOptions {
pickFirst 'lib/armeabi-v7a/libc++_shared.so'
pickFirst 'lib/armeabi/libc++_shared.so'
pickFirst 'lib/arm64-v8a/libc++_shared.so'
pickFirst 'lib/x86/libc++_shared.so'
pickFirst 'lib/x86_64/libc++_shared.so'
pickFirst 'lib/mips/libc++_shared.so'
pickFirst 'lib/mips64/libc++_shared.so'
}
dexOptions {
maxProcessCount 8
javaMaxHeapSize "1g"
preDexLibraries true
}
compileSdkVersion 26
buildToolsVersion "26.0.1"
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "com.sadeem.mobiletv"
minSdkVersion 14
targetSdkVersion 21
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
debug {
shrinkResources false
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
jniDebuggable true
}
release {
shrinkResources false
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
jniDebuggable false
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile project(':libvlc')
compile project(':api')
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support:design:26.+'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:support-v4:26.+'
compile 'com.android.support:recyclerview-v7:26.+'
testCompile 'junit:junit:4.12'
}
我的 gradle 模块一是
configurations.maybeCreate("default")
artifacts.add("default", 文件('api-release.aar'))
还有两个是
configurations.maybeCreate("default") artifacts.add("default", 文件('libvlc-3.0.0-null.aar'))
我不知道为什么在发布 apk 后不安装任何人的帮助
看起来是 Android 版本问题。在生成签名的 APK 文件时尝试 select 签名版本 复选框,即 v1 和 v2.或者尝试卸载您应用的早期版本(例如调试 APK)。
我确定您的 phone 上安装了调试 apk。请卸载调试apk,然后安装调试apk。