Android 如何修改APK的預設名稱
用Android Studio 打包App時產生的名稱預設是 app-release.apk(已簽署) 或 app-debug.apk(測試版)。
要想打包時修改預設名稱,可以打開在build.gradle(module:app)檔案,在android{}中加入以下程式碼:
android.applicationVariants.all { variant -> variant.outputs.each { output -> def outputFile = output.outputFile if (outputFile != null && outputFile.name.endsWith('.apk')) { //这里修改apk文件名 def fileName = outputFile.name.replace("app", "你想要的名字") output.outputFile = new File(outputFile.parent, fileName) } } }
寫完直接點擊工具列Build中的BuildApk 或是使用簽名打包即可。
效果圖如下:
其實,還可以是這樣:右鍵—>重新命名 。
感謝閱讀,希望能幫助大家,謝謝大家對本站的支持!
更多Android 如何修改APK的預設名稱相關文章請關注PHP中文網!