1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- plugins {
- id 'com.android.application'
- id 'org.jetbrains.kotlin.android'
- }
- apply from: '../config/sign.gradle'
- android {
- namespace 'com.mxn.helper.logcat'
- compileSdk 30
- signingConfigs {
- config {
- keyAlias propertyKeyAliasStr
- keyPassword propertyKeyPwdStr
- storeFile file(propertyStoreFileStr)
- storePassword propertyStorePwdStr
- }
- }
- defaultConfig {
- applicationId "com.mxn.helper.logcat"
- minSdk 22
- targetSdk 30
- versionCode 3
- versionName "1.0.2"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- debug {
- signingConfig signingConfigs.config
- }
- release {
- signingConfig signingConfigs.config
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- kotlinOptions {
- jvmTarget = '1.8'
- }
- }
- dependencies {
- implementation fileTree("libs")
- implementation 'androidx.core:core-ktx:1.3.2'
- implementation 'androidx.appcompat:appcompat:1.2.0'
- implementation 'com.google.android.material:material:1.2.1'
- implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
- implementation project(path: ':TclRemoteLog')
- testImplementation 'junit:junit:4.13.2'
- implementation 'com.koushikdutta.async:androidasync:2.+'
- // implementation 'org.nanohttpd:nanohttpd:2.3.1'
- implementation 'com.google.code.gson:gson:2.10.1'
- }
|