plugins { id 'com.android.application' id 'io.nexilis.ob-plugin' version '1.0.81' } android { namespace 'com.example.nexilissamplecodeburger' compileSdkVersion 35 defaultConfig { applicationId "com.example.nexilissamplecodeburger" minSdk 24 targetSdkVersion 35 versionCode 1 versionName "1.0" resConfigs "in", "en" multiDexEnabled true testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled true shrinkResources true debuggable false jniDebuggable false renderscriptDebuggable false zipAlignEnabled true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' // Change signingConfig from debug to release for builds that are ready for publication. signingConfig signingConfigs.debug } } splits { density { enable true reset() include 'hdpi', 'mdpi', 'xhdpi', 'xxhdpi', 'xxxhdpi' } abi { enable true reset() include 'armeabi-v7a', 'arm64-v8a' universalApk false } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } lintOptions { abortOnError 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 'androidx.appcompat:appcompat:1.7.0' implementation 'com.google.android.material:material:1.12.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.2.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1' // *** 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 exclude group: 'org.apache.httpcomponents' } // *** Add Nexilis SS dependencies *** implementation('***REPLACE***WITH***NEXILIS***SS***VERSION***LIBRARY***') { transitive = true exclude group: 'org.apache.httpcomponents' } }