version++
parent
577067575f
commit
c7840c07ee
|
@ -92,6 +92,6 @@ kapt {
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
||||||
implementation 'com.finogeeks.lib:finapplet:2.35.7'
|
implementation 'com.finogeeks.lib:finapplet:2.35.9'
|
||||||
implementation 'com.finogeeks.mop:plugins:2.35.7'
|
implementation 'com.finogeeks.mop:plugins:2.35.9'
|
||||||
}
|
}
|
|
@ -0,0 +1,96 @@
|
||||||
|
|
||||||
|
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:__finapplet_version__'
|
||||||
|
implementation 'com.finogeeks.mop:plugins:__finapplet_version__'
|
||||||
|
}
|
Loading…
Reference in New Issue