75 lines
1.6 KiB
Groovy
75 lines
1.6 KiB
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 31
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 22
|
|
targetSdkVersion 30
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
ndk {
|
|
|
|
abiFilters "arm64-v8a"
|
|
}
|
|
|
|
}
|
|
buildTypes {
|
|
release {
|
|
debuggable true
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
encoding "UTF-8"
|
|
}
|
|
sourceSets {
|
|
main {
|
|
jniLibs.srcDirs=['libs']
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
|
|
}
|
|
|
|
android {
|
|
lintOptions {
|
|
abortOnError false
|
|
checkReleaseBuilds false
|
|
}
|
|
|
|
}
|
|
|
|
repositories {
|
|
flatDir {
|
|
dirs 'libs'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation 'androidx.core:core:1.6.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.2'
|
|
implementation 'androidx.appcompat:appcompat:1.3.1'
|
|
// implementation 'androidx.recyclerview:recyclerview:1.0'
|
|
implementation 'com.google.android.gms:play-services-base:11.0.4'
|
|
implementation files('libs/Android_DataGridView-1.01.aar')
|
|
//implementation project(':libraries:inetsdk')
|
|
implementation ('com.google.firebase:firebase-messaging:11.0.4'){
|
|
exclude group:'androidx.legacy'
|
|
}
|
|
implementation files('libs\\INetSDK.jar')
|
|
implementation files('libs\\IPlaySDK.jar')
|
|
|
|
}
|
|
|
|
|