123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- plugins {
- alias(libs.plugins.android.application)
- alias(libs.plugins.nexilis.in)
- }
- android {
- namespace 'com.example.app'
- compileSdk 35
- // signingConfigs {
- // release {
- // keyAlias '***REPLACE***WITH***YOUR***KEYALIAS***'
- // storeFile file('***REPLACE***WITH***PATH***YOUR***KEY***')
- // storePassword '***REPLACE***WITH***YOUR***STOREPASSWORD***'
- // keyPassword '***REPLACE***WITH***YOUR***KEYPASSWORD***'
- // }
- // }
- defaultConfig {
- applicationId "com.example.app"
- minSdk 24
- targetSdk 35
- versionCode 1
- versionName "1.0"
- multiDexEnabled true
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled true
- debuggable false
- jniDebuggable false
- renderscriptDebuggable false
- zipAlignEnabled true
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- debug {
- minifyEnabled false
- debuggable false
- jniDebuggable false
- renderscriptDebuggable false
- zipAlignEnabled true
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- splits {
- density {
- enable true
- reset()
- include 'hdpi', 'mdpi', 'xhdpi', 'xxhdpi', 'xxxhdpi'
- }
- abi {
- enable true
- reset()
- include 'armeabi-v7a', 'arm64-v8a'
- universalApk false
- }
- }
- packagingOptions {
- exclude 'META-INF/DEPENDENCIES'
- exclude 'META-INF/LICENSE'
- exclude 'META-INF/LICENSE.txt'
- exclude 'META-INF/license.txt'
- exclude 'META-INF/NOTICE'
- exclude 'META-INF/NOTICE.txt'
- exclude 'META-INF/notice.txt'
- exclude 'META-INF/ASL2.0'
- doNotStrip "/armeabi-v7a/.so"
- doNotStrip "/arm64-v8a/.so"
- jniLibs {
- useLegacyPackaging = true
- }
- }
- }
- dependencies {
- implementation libs.appcompat
- implementation libs.material
- implementation libs.activity
- implementation libs.constraintlayout
- testImplementation libs.junit
- androidTestImplementation libs.ext.junit
- androidTestImplementation libs.espresso.core
- // *** Add Nexilis UI dependencies ***
- implementation('***REPLACE***WITH***NEXILIS***UI***VERSION***LIBRARY***') {
- transitive = true
- exclude group: 'org.apache.httpcomponents'
- }
- // *** Add Nexilis UC dependencies ***
- implementation('***REPLACE***WITH***NEXILIS***UC***VERSION***LIBRARY***') {
- transitive = true
- }
- // *** Add Nexilis SS dependencies ***
- implementation('***REPLACE***WITH***NEXILIS***SS***VERSION***LIBRARY***') {
- transitive = true
- }
- }
|