Files
Xuewang365OSHonor/FlycoTabLayoutZ_Lib/build.gradle
tongtongstudio 5074854c40 build: update agp android gradle version
update agp to 8.13.2,update gradle to 8.13,add build.gradle namespace,use android studio panda 4
2026-06-12 18:44:30 +08:00

43 lines
1.1 KiB
Groovy
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
apply plugin: 'com.android.library'
//apply plugin: 'com.novoda.bintray-release'
version = "1.3.3"
android {
namespace "com.flyco.tablayout"
compileSdkVersion 28
defaultConfig {
minSdkVersion 17
targetSdkVersion 28
versionCode 5
versionName version
}
buildTypes {
iPlay50PDebug {}
iPlay50PRelease {}
MTKT1102Debug {}
MTKT1102Release {}
U807Debug {}
U807Release {}
iPlay50SEDebug {}
iPlay50SERelease {}
debug {}
release {}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
}
//// jcenter发布的信息
//publish {
// userOrg = 'lizp' // 创建repo的位置
// groupId = 'com.lzp' // 引用的分组名称
// artifactId = 'FlycoTabLayoutZ'//项目名称
// publishVersion = version//版本号
// desc = '在FlycoTabLayout的基础上扩展出SlidingScaleTabLayout实现滑动可以改变tab字体的大小的切换效果'
// website = 'https://github.com/li504799868/FlycoTabLayoutZ'
//}