mirror of
https://github.com/A6-9V/MQL5-Google-Onedrive.git
synced 2026-04-11 22:49:14 +00:00
44 lines
1.4 KiB
Groovy
44 lines
1.4 KiB
Groovy
|
|
apply plugin: 'com.android.application'
|
||
|
|
|
||
|
|
android {
|
||
|
|
compileSdkVersion 29
|
||
|
|
|
||
|
|
|
||
|
|
defaultConfig {
|
||
|
|
applicationId "com.idcf.boathouse"
|
||
|
|
minSdkVersion 15
|
||
|
|
targetSdkVersion 29
|
||
|
|
versionCode 1
|
||
|
|
versionName "1.0"
|
||
|
|
|
||
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||
|
|
}
|
||
|
|
|
||
|
|
buildTypes {
|
||
|
|
release {
|
||
|
|
minifyEnabled false
|
||
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
|
|
||
|
|
implementation 'com.android.support:appcompat-v7'
|
||
|
|
implementation 'com.android.support:design'
|
||
|
|
implementation 'com.android.support:recyclerview-v7'
|
||
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
||
|
|
implementation 'android.arch.navigation:navigation-fragment:1.0.0'
|
||
|
|
implementation 'android.arch.navigation:navigation-ui:1.0.0'
|
||
|
|
|
||
|
|
// fragment manage
|
||
|
|
implementation 'me.yokeyword:fragmentation:1.3.3'
|
||
|
|
// bottom-navigation-bar
|
||
|
|
implementation 'com.ashokvarma.android:bottom-navigation-bar:2.0.4'
|
||
|
|
implementation 'com.alibaba:fastjson:1.1.54.android'
|
||
|
|
testImplementation 'junit:junit:4.13'
|
||
|
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
||
|
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
|
||
|
|
}
|