apply plugin: 'com.android.application' //apply plugin: 'com.google.gms.google-services' apply plugin: 'com.huawei.agconnect' android { compileSdkVersion 34 buildToolsVersion "34.0.0" defaultConfig { applicationId "warp.ly.android_sdk" minSdkVersion 23 targetSdkVersion 34 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. keyAlias 'warplydemo' keyPassword 'warplydemo' storeFile file('../keystore/warplydemo.jks') storePassword 'warplydemo' } // debug { // keyAlias 'androiddebugkey' // keyPassword 'android' // storeFile file('../keystore/debug.keystore') // storePassword 'android' // } } buildTypes { debug { // signingConfig signingConfigs.debug } release { signingConfig signingConfigs.config minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } namespace "warp.ly.android_sdk" packaging { jniLibs { useLegacyPackaging true } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation project(':warply_android_sdk') //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' }