คุณสามารถใช้versionName
ในทรัพยากร XML เช่นโครงร่างกิจกรรม ขั้นแรกสร้างทรัพยากรสตริงในapp/build.gradle
ด้วยตัวอย่างต่อไปนี้ในandroid
โหนด:
applicationVariants.all { variant ->
variant.resValue "string", "versionName", variant.versionName
}
ดังนั้นbuild.gradle
เนื้อหาไฟล์ทั้งหมดอาจมีลักษณะเช่นนี้:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '24.0.0 rc3'
defaultConfig {
applicationId 'com.example.myapplication'
minSdkVersion 15
targetSdkVersion 23
versionCode 17
versionName '0.2.3'
jackOptions {
enabled true
}
}
applicationVariants.all { variant ->
variant.resValue "string", "versionName", variant.versionName
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:design:23.3.0'
compile 'com.android.support:support-v4:23.3.0'
}
จากนั้นคุณสามารถใช้@string/versionName
ใน XML Android Studio จะทำเครื่องหมายเป็นสีแดง แต่แอพจะรวบรวมโดยไม่มีปัญหา ตัวอย่างเช่นอาจใช้สิ่งนี้ในapp/src/main/res/xml/preferences.xml
:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:title="About"
android:key="pref_key_about">
<Preference
android:key="pref_about_build"
android:title="Build version"
android:summary="@string/versionName" />
</PreferenceCategory>
</PreferenceScreen>