知りたいこと
何が原因なのか、または原因の調べ方など
現状
ここのサイトを参考に署名付きapkの作成をして、他者2人にapkファイル配ってみたら、両者「アプリがインストールされていません。」と表示されてインストールできないそうです。
試したこと
Generate Signed APK画像・画像2
Signing Configsが書けてるかどうか確認。画像
adbコマンドでapkのインストールができるか試したところできた。画像
build.gradle
apply plugin: 'com.android.application' apply plugin: 'realm-android' android { signingConfigs { release { storeFile file('C:\Users\sdhr0\DailyCounter.jks') storePassword 'sdhr2145' keyAlias 'key' keyPassword 'sdhr2145' } } compileSdkVersion 29 defaultConfig { applicationId "com.example.dailycounter" minSdkVersion 24 targetSdkVersion 29 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" signingConfig signingConfigs.release } buildTypes { release { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' signingConfig signingConfigs.release applicationIdSuffix 'DailyCounter' } } } dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) implementation 'androidx.appcompat:appcompat:1.1.0' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' implementation 'com.google.android.material:material:1.1.0' implementation 'androidx.recyclerview:recyclerview:1.1.0' implementation "androidx.cardview:cardview:1.0.0" implementation "androidx.recyclerview:recyclerview-selection:1.1.0-alpha06" testImplementation 'junit:junit:4.12' androidTestImplementation 'androidx.test.ext:junit:1.1.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。