We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a93f8d0 commit 7c25490Copy full SHA for 7c25490
sdkdemo/build.gradle
@@ -90,6 +90,12 @@ android {
90
useLegacyPackaging true
91
}
92
93
+ applicationVariants.configureEach { variant ->
94
+ variant.outputs.configureEach { output ->
95
+ def newApkName = "VideoLinkDemo-${variant.buildType.name}-${variant.versionName}.apk"
96
+ outputFileName = newApkName
97
+ }
98
99
100
101
dependencies {
sdkdemo/src/main/res/values/strings.xml
@@ -1,5 +1,5 @@
1
<resources>
2
- <string name="app_name">Explorer Link Demo</string>
+ <string name="app_name">Video Link Demo</string>
3
4
<string name="cancel">取消</string>
5
<string name="delete">删除</string>
0 commit comments