// Dually licensed as CC-BY-SA and GPLv3 by Marko Zajc in 2022 plugins { id 'com.android.application' } android { namespace 'org.eu.zajc.autorecord' //noinspection GradleDependency I use android 12 so I won't pretend like I know if any other version is supported compileSdk 32 defaultConfig { applicationId "org.eu.zajc.autorecord" // lower API levels should be applicable, but you'll probably want to remove usage of the // stream API minSdk 31 //noinspection ExpiredTargetSdkVersion I use android 12 so I won't pretend like I know if any other version is supported targetSdk 32 versionCode 2 versionName "1.1" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } dependencies { compileOnly 'de.robv.android.xposed:api:82' }