加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.gradle 1.77 KB
一键复制 编辑 原始数据 按行查看 历史
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
ext {
minSdkVersion = 14
compileSdkVersion = 29
targetSdkVersion = compileSdkVersion
rxJava = 'io.reactivex.rxjava3:rxjava:3.0.4'
junit = 'junit:junit:4.13'
mockito = 'org.mockito:mockito-core:3.3.3'
androidXFragment = 'androidx.fragment:fragment:1.2.5'
androidXAnnotation = 'androidx.annotation:annotation:1.1.0'
androidXAppcompat = 'androidx.appcompat:appcompat:1.1.0'
robolectricVersion = '4.3.1'
robolectric = "org.robolectric:robolectric:$robolectricVersion"
robolectricShadowsSupport = "org.robolectric:shadows-support-v4:$robolectricVersion"
// Workaround for https://github.com/robolectric/robolectric/issues/1932
khronosOpenGLApi = "org.khronos:opengl-api:gl1.1-android-2.1_r1"
bintrayRepo = 'tbruyelle'
bintrayName = 'RxPermissions3'
publishedGroupId = 'com.tbruyelle.rxpermissions3'
artifact = 'rxpermissions'
libraryName = 'RxPermissions'
libraryVersion = '0.9.5'
libraryDescription = 'A wrapper for Android 6.0 permissions'
siteUrl = 'https://github.com/tbruyelle/RxPermissions'
gitUrl = 'https://github.com/tbruyelle/RxPermissions.git'
developerId = 'tbruyelle'
developerName = 'Thomas Bruyelle'
developerEmail = 'thomas.bruyelle@gmail.com'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化