Advertisement
Leon-the-archer

build.gradle

Jun 11th, 2023
435
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 1.09 KB | Source Code | 0 0
  1. plugins {
  2.     id 'com.android.application'
  3. }
  4.  
  5. android {
  6.     namespace 'com.example.ble_imu_data_viewer'
  7.     compileSdk 33
  8.  
  9.     defaultConfig {
  10.         applicationId "com.example.ble_imu_data_viewer"
  11.         minSdk 24
  12.         targetSdk 33
  13.         versionCode 1
  14.         versionName "1.0"
  15.  
  16.         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  17.     }
  18.  
  19.     buildTypes {
  20.         release {
  21.             minifyEnabled false
  22.             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  23.         }
  24.     }
  25.     compileOptions {
  26.         sourceCompatibility JavaVersion.VERSION_1_8
  27.         targetCompatibility JavaVersion.VERSION_1_8
  28.     }
  29. }
  30.  
  31. dependencies {
  32.  
  33.     implementation 'androidx.appcompat:appcompat:1.6.1'
  34.     implementation 'com.google.android.material:material:1.9.0'
  35.     implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  36.     testImplementation 'junit:junit:4.13.2'
  37.     androidTestImplementation 'androidx.test.ext:junit:1.1.5'
  38.     androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement