You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.9 KiB
Groovy
49 lines
1.9 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
buildToolsVersion '29.0.0'
|
|
defaultConfig {
|
|
applicationId "com.example.tyre"
|
|
minSdkVersion 21
|
|
targetSdkVersion 29
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
// implementation 'com.android.support:support-v4:29.+'
|
|
implementation 'com.android.support:support-v4:29.+'
|
|
implementation 'com.android.support:appcompat-v7:29.+'
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
|
implementation 'com.google.android.material:material:1.1.0'
|
|
implementation 'androidx.navigation:navigation-fragment:2.2.2'
|
|
implementation 'androidx.navigation:navigation-ui:2.2.2'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test:runner:1.2.0'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
|
|
implementation 'com.jakewharton:butterknife:10.2.0'
|
|
annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.0'
|
|
implementation 'com.lzy.net:okgo:3.0.4'
|
|
implementation 'com.google.code.gson:gson:2.8.5'
|
|
implementation 'androidx.recyclerview:recyclerview:1.0.0'
|
|
implementation files('libs/uhfcom13_v15.jar')
|
|
implementation files('libs/SerialPort.jar')
|
|
}
|