就像BuildConfig.FLAVOR
和BuildConfig.DEBUG
是否有構建標誌可在運行時檢查APK版本或Android應用程序的即時應用程序版本?是否有Android版本檢查APK與應用程序的即時應用程序版本
或者還有另一種獲取信息的方式嗎?
就像BuildConfig.FLAVOR
和BuildConfig.DEBUG
是否有構建標誌可在運行時檢查APK版本或Android應用程序的即時應用程序版本?是否有Android版本檢查APK與應用程序的即時應用程序版本
或者還有另一種獲取信息的方式嗎?
添加到模塊build.gradle
的依賴關係:implementation 'com.google.android.instantapps:instantapps:1.0.0'
然後您將能夠使用函數InstantApps.isInstantApp(this)
。
請注意,您必須使用Maven谷歌在該項目build.gradle
改變你的資料庫:
buildscript {
repositories {
maven {
url 'https://maven.google.com'
}
jcenter()
}
...
}
allprojects {
repositories {
maven {
url 'https://maven.google.com'
}
jcenter()
}
}
是的,你可以判斷當前應用程序是否安裝應用程序或即時app.First所有添加的功能模塊中的依賴關係的build.gradle
api "com.google.android.instantapps:instantapps:1.0.0"
匹配你的項目級的build.gradle機智h該
buildscript {
repositories {
maven { url 'https://maven.google.com' }
jcenter()
}...
}
allprojects {
repositories {
maven { url 'https://maven.google.com' }
jcenter()
}
}
最後,在運行時您可以寫信
if (InstantApps.isInstantApp(this)) {
// Do something like, show install button
} else {
// Do something like, hide install button
}