apply plugin: 'com.android.application' android { compileSdkVersion 33 buildToolsVersion '33.0.0' defaultConfig { applicationId "com.amnesica.kryptey" minSdkVersion 26 targetSdkVersion 33 versionCode 24 versionName "0.1.5" } buildTypes { release { minifyEnabled false debuggable false renderscriptDebuggable false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_11 targetCompatibility JavaVersion.VERSION_11 } } dependencies { implementation 'org.signal:libsignal-android:0.21.1' implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.1' implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.1' implementation 'com.google.protobuf:protobuf-javalite:3.21.12' testImplementation "junit:junit:4.13.2" }