96 lines
2.2 KiB
Dart
96 lines
2.2 KiB
Dart
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-kapt'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
group 'com.finogeeks.mop'
|
|
version '1.0'
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
maven {
|
|
url "https://gradle.finogeeks.club/repository/finogeeks/"
|
|
credentials {
|
|
username "finclip"
|
|
password "Abcd@@1234"
|
|
}
|
|
}
|
|
maven {
|
|
url "https://gradle.finogeeks.club/repository/applet/"
|
|
credentials {
|
|
username "finclip"
|
|
password "Abcd@@1234"
|
|
}
|
|
}
|
|
maven { url "https://jitpack.io" }
|
|
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.5.3'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.61"
|
|
|
|
}
|
|
}
|
|
|
|
rootProject.allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
maven {
|
|
url "https://gradle.finogeeks.club/repository/finogeeks/"
|
|
credentials {
|
|
username "finclip"
|
|
password "Abcd@@1234"
|
|
}
|
|
}
|
|
maven {
|
|
url "https://gradle.finogeeks.club/repository/applet/"
|
|
credentials {
|
|
username "finclip"
|
|
password "Abcd@@1234"
|
|
}
|
|
}
|
|
maven { url "https://jitpack.io" }
|
|
|
|
}
|
|
}
|
|
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
lintOptions {
|
|
disable 'InvalidPackage'
|
|
}
|
|
}
|
|
|
|
kapt {
|
|
arguments {
|
|
arg("moduleName", project.getName())
|
|
}
|
|
}
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation 'com.finogeeks.lib:finapplet:2.42.7'
|
|
implementation 'com.finogeeks.mop:plugins:2.42.7'
|
|
} |