gpt4 book ai didi

android - sdk 为 25 时如何编译自定义选项卡?

转载 作者:行者123 更新时间:2023-11-30 00:42:04 25 4
gpt4 key购买 nike

我引用官网https://developer.chrome.com/multidevice/android/customtabs

他们像这样 gradle:compile 'com.android.support:customtabs:23.3.0'

我的项目使用了很多编译gradle,sdk是25,我不想改变它。

有人在 sdk 为 25 时编译 gragdle 自定义选项卡吗?提前致谢。

这是我的gradle:

apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "25.0.1"
defaultConfig {
applicationId "com.example.my.myapp"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile('com.crashlytics.sdk.android:crashlytics:2.6.6@aar') {
transitive = true;
}
compile files('libs/YouTubeAndroidPlayerApi.jar')
compile 'com.android.support:appcompat-v7:25.1.1'//i don't want to change it.
compile 'com.android.support:design:25.1.1'
compile 'com.android.support:support-v4:25.1.1'
compile 'com.android.support:recyclerview-v7:25.1.1'
compile 'com.github.PhilJay:MPAndroidChart:v3.0.1'
compile 'com.android.support:cardview-v7:25.1.1'
compile 'com.android.support:customtabs:23.3.0'//is this with verson 25 ?
testCompile 'junit:junit:4.12'
}
apply plugin: 'io.fabric'

最佳答案

你应该使用

 dependencies {
...
compile 'com.android.support:customtabs:25.1.0' //25.2.0 has been published
}

优势

  • 自定义 UI 以及与自定义标签的交互。
  • 使页面加载速度更快,并使应用程序保持 Activity 状态。

阅读 Chrome Custom Tabs

关于android - sdk 为 25 时如何编译自定义选项卡?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42405530/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com