AOS_iOS_NRE_Sample/NexacroN/Android/nexacroApp/app/build.gradle

45 lines
1.2 KiB
Groovy
Raw Permalink Normal View History

2023-09-18 15:22:14 +09:00
plugins {
id 'com.android.application'
}
android {
compileSdkVersion 30
defaultConfig {
applicationId "com.example.nexacroapp"
minSdkVersion 21
targetSdkVersion 30
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'androidx.exifinterface:exifinterface:1.3.2'
implementation 'com.google.android.material:material:1.3.0'
implementation 'com.google.android.gms:play-services-maps:17.0.1'
implementation 'com.google.android.gms:play-services-location:18.0.0'
implementation 'com.google.firebase:firebase-core:18.0.3'
implementation 'com.google.firebase:firebase-messaging:21.1.0'
implementation 'com.neovisionaries:nv-websocket-client:2.14'
// nexacro.aar은 project/app/libs 에 위치 시킨다.
implementation name: 'nexacro', ext: 'aar'
}
apply plugin: 'com.google.gms.google-services'