You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.4 KiB
53 lines
1.4 KiB
group 'io.openim.flutter_openim_sdk'
|
|
version '1.0'
|
|
|
|
buildscript {
|
|
repositories {
|
|
maven { url 'https://maven.aliyun.com/repository/google' }
|
|
maven { url 'https://maven.aliyun.com/repository/jcenter' }
|
|
maven { url 'http://maven.aliyun.com/nexus/content/groups/public' }
|
|
maven {
|
|
allowInsecureProtocol = true
|
|
// url 'http://121.37.25.71:8081/repository/maven-releases/'
|
|
url 'http://121.37.25.71:8081/repository/maven2/'
|
|
}
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.5.4'
|
|
}
|
|
}
|
|
|
|
rootProject.allprojects {
|
|
repositories {
|
|
maven { url 'https://maven.aliyun.com/repository/google' }
|
|
maven { url 'https://maven.aliyun.com/repository/jcenter' }
|
|
maven { url 'http://maven.aliyun.com/nexus/content/groups/public' }
|
|
maven {
|
|
allowInsecureProtocol = true
|
|
// url 'http://121.37.25.71:8081/repository/maven-releases/'
|
|
url 'http://121.37.25.71:8081/repository/maven2/'
|
|
}
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
dependencies {
|
|
implementation 'io.openim:core-sdk:2.0.9.+@aar'
|
|
} |