Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cee5f827 authored by Amit Kumar's avatar Amit Kumar 💻
Browse files

Sign debug build with default android certificates

parent 9cafa846
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -24,6 +24,16 @@ android {
			proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
		}
	}

	signingConfigs {
		debug {
			storeFile rootProject.file(".sign/debug.keystore")
			storePassword "android"
			keyAlias "androiddebugkey"
			keyPassword "android"
		}
	}

	compileOptions {
		sourceCompatibility JavaVersion.VERSION_1_8
		targetCompatibility JavaVersion.VERSION_1_8