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.
45 lines
896 B
45 lines
896 B
group 'io.openim.flutter_openim_sdk'
|
|
version '1.0'
|
|
|
|
buildscript {
|
|
repositories {
|
|
maven {
|
|
url 'http://121.37.25.71:8081/repository/maven2/'
|
|
allowInsecureProtocol = true
|
|
}
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.5.4'
|
|
}
|
|
}
|
|
|
|
rootProject.allprojects {
|
|
repositories {
|
|
maven {
|
|
url 'http://121.37.25.71:8081/repository/maven2/'
|
|
allowInsecureProtocol = true
|
|
}
|
|
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.22@aar'
|
|
}
|
|
|