सारांश में, उन लोगों के लिए में पैकेज आयात करने के लिए पता नहीं कैसे build.gradle
(मेरे जैसे), निम्न का उपयोग buildTypes
,
buildTypes {
release {
signingConfig signingConfigs.release
applicationVariants.all { variant ->
def file = variant.outputFile
def manifestParser = new com.android.builder.core.DefaultManifestParser()
variant.outputFile = new File(file.parent, file.name.replace(".apk", "-" + manifestParser.getVersionName(android.sourceSets.main.manifest.srcFile) + ".apk"))
}
}
}
===== EDIT =====
यदि आप अपनी versionCode
और versionName
अपनी build.gradle
फ़ाइल को इस तरह सेट करते हैं :
defaultConfig {
minSdkVersion 15
targetSdkVersion 19
versionCode 1
versionName "1.0.0"
}
आपको इसे इस तरह सेट करना चाहिए:
buildTypes {
release {
signingConfig signingConfigs.releaseConfig
applicationVariants.all { variant ->
def file = variant.outputFile
variant.outputFile = new File(file.parent, file.name.replace(".apk", "-" + defaultConfig.versionName + ".apk"))
}
}
}
====== Android स्टूडियो 1.0 ==== के साथ EDIT
यदि आप एंड्रॉइड स्टूडियो 1.0 का उपयोग कर रहे हैं, तो आपको इस तरह एक त्रुटि मिलेगी:
Error:(78, 0) Could not find property 'outputFile' on com.android.build.gradle.internal.api.ApplicationVariantImpl_Decorated@67e7625f.
आपको इसका build.Types
हिस्सा बदलना चाहिए :
buildTypes {
release {
signingConfig signingConfigs.releaseConfig
applicationVariants.all { variant ->
variant.outputs.each { output ->
output.outputFile = new File(output.outputFile.parent, output.outputFile.name.replace(".apk", "-" + defaultConfig.versionName + ".apk"))
}
}
}
}