赞
踩
首先,你需要生成一个密钥库,用于签署你的 APK 文件。
Build
-> Generate Signed Bundle / APK...
。APK
,然后点击 Next
。Create new...
按钮创建一个新的密钥库。OK
。Next
。build.gradle.kts
在你的 build.gradle.kts
文件中,配置 release
构建类型,并设置签名配置:
android { compileSdkVersion(33) defaultConfig { applicationId = "com.example.shop_app_android" minSdkVersion(21) targetSdkVersion(33) versionCode = 1 versionName = "1.0" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } buildTypes { getByName("release") { isMinifyEnabled = false proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") signingConfig = signingConfigs.getByName("release") } } signingConfigs { create("release") { keyAlias = "your_key_alias" keyPassword = "your_key_password" storeFile = file("path/to/your/keystore.jks") storePassword = "your_store_password" } } } dependencies { implementation("androidx.appcompat:appcompat:1.6.1") implementation("com.google.android.material:material:1.9.0") implementation("androidx.constraintlayout:constraintlayout:2.1.4") testImplementation("junit:junit:4.13.2") androidTestImplementation("androidx.test.ext:junit:1.1.5") androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1") }
将 your_key_alias
、your_key_password
、path/to/your/keystore.jks
和 your_store_password
替换为你的实际值。
Build
-> Build Bundle(s) / APK(s)
-> Build APK(s)
。locate
链接,你将会找到生成的 APK 文件。生成 APK 文件后,你可以通过多种方式分发它:
用户可以通过以下步骤安装你的 APK 文件:
通过这些步骤,你就可以生成并分发一个供用户安装和使用的 Android 应用。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。