123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- apply plugin: 'com.android.application'
- apply plugin: 'com.google.gms.google-services'
- android {
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- signingConfigs {
- debug {
- storeFile file("../icontrols_keystore.jks")
- storePassword "hdc!@icontrols34"
- keyAlias "debug_key"
- keyPassword "hdc!@12"
- }
- release {
- storeFile file("../icontrols_keystore.jks")
- storePassword "hdc!@icontrols34"
- keyAlias "release_key"
- keyPassword "hdc!@34"
- }
- }
- compileSdkVersion 29
- defaultConfig {
- applicationId "kr.co.icontrols.iotplatform"
- minSdkVersion 26
- targetSdkVersion 29
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- debug {
- minifyEnabled false
- signingConfig signingConfigs.debug
- manifestPlaceholders = [googleMapsKey: 'xxx', kakaoMapKey: '7b07afcee0753baf20590412749bd0a6']
- }
- release {
- minifyEnabled true
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- signingConfig signingConfigs.release
- manifestPlaceholders = [googleMapsKey: 'xxx', kakaoMapKey: '7b07afcee0753baf20590412749bd0a6']
- }
- }
- buildToolsVersion '29.0.2'
- }
- dependencies {
- implementation fileTree(dir: "libs", include: ["*.jar"])
- implementation 'com.google.android.gms:play-services-auth:18.1.0'
- implementation 'org.jsoup:jsoup:1.11.3'
- implementation 'androidx.appcompat:appcompat:1.1.0'
- implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
- testImplementation 'junit:junit:4.12'
- androidTestImplementation 'androidx.test.ext:junit:1.1.1'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
- implementation 'com.amazonaws:aws-android-sdk-cognitoidentityprovider:2.16.+'
- implementation 'com.google.android.material:material:1.1.0'
- def room_version = "2.2.5"
- implementation "androidx.room:room-runtime:$room_version"
- annotationProcessor "androidx.room:room-compiler:$room_version"
- // BEGIN AWS S3
- def aws_version = "2.16.+"
- implementation "com.amazonaws:aws-android-sdk-s3:$aws_version"
- // AWS FreeRTOS
- //implementation project(':amazonfreertossdk')
- implementation('software.amazon.freertos:amazonfreertossdk:1.1.0')
- implementation('com.amazonaws:aws-android-sdk-mobile-client:2.13.5')
- implementation('com.amazonaws:aws-android-sdk-auth-userpools:2.13.5')
- implementation('com.amazonaws:aws-android-sdk-auth-ui:2.13.5')
- implementation 'com.amazonaws:aws-android-sdk-iot:2.13.5'
- // Nordic DFU (OTA)
- implementation 'no.nordicsemi.android:dfu:1.10.4'
- implementation 'no.nordicsemi.android:log:2.2.0'
- implementation 'no.nordicsemi.android:ble-livedata:2.2.0'
- implementation 'no.nordicsemi.android.support.v18:scanner:1.4.3'
- // Add the dependencies for the Firebase Cloud Messaging and Analytics libraries
- implementation 'com.google.firebase:firebase-messaging:20.2.4'
- implementation 'com.google.firebase:firebase-analytics:17.5.0'
- //OkHttp
- implementation 'com.squareup.okhttp3:okhttp:3.9.1'
- //JSON
- implementation 'org.jsoup:jsoup:1.11.3'
- api "androidx.appcompat:appcompat:$androidXLibraryVersion"
- implementation project(":cropper")
- }
|