Blame view

app/build.gradle 1.94 KB
1
apply plugin: 'com.android.application'
Panagiotis Triantafyllou authored
2
//apply plugin: 'com.google.gms.google-services'
3
apply plugin: 'com.huawei.agconnect'
4 5

android {
6 7
    compileSdkVersion 34
    buildToolsVersion "34.0.0"
8 9 10 11

    defaultConfig {
        applicationId "warp.ly.android_sdk"
        minSdkVersion 23
12
        targetSdkVersion 34
13 14 15 16 17 18 19 20 21 22 23 24 25 26
        versionCode 100
        versionName "1.0.0"
    }

    lintOptions {
        checkReleaseBuilds false
        // Or, if you prefer, you can continue to check for errors in release builds,
        // but continue the build even when errors are found:
        abortOnError false
    }

    signingConfigs {
        config {
            // Set the parameters based on the actual signing information.
27 28 29 30
            keyAlias 'warplydemo'
            keyPassword 'warplydemo'
            storeFile file('../keystore/warplydemo.jks')
            storePassword 'warplydemo'
31
        }
32 33 34 35 36 37
//        debug {
//            keyAlias 'androiddebugkey'
//            keyPassword 'android'
//            storeFile file('../keystore/debug.keystore')
//            storePassword 'android'
//        }
38 39 40 41
    }

    buildTypes {
        debug {
42
//            signingConfig signingConfigs.debug
43 44 45 46 47 48 49
        }
        release {
            signingConfig signingConfigs.config
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
50 51 52 53 54 55 56 57

    namespace "warp.ly.android_sdk"

    packaging {
        jniLibs {
            useLegacyPackaging true
        }
    }
58 59 60 61
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
62
    implementation project(':warply_android_sdk')
63 64 65 66 67 68 69 70 71 72

    //Support
    implementation 'androidx.appcompat:appcompat:1.4.1'
    implementation 'androidx.recyclerview:recyclerview:1.2.1'
    implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'

    implementation 'org.altbeacon:android-beacon-library:2.19.3'
    implementation 'com.squareup.picasso:picasso:2.5.2'

}