apply plugin: 'com.android.application' buildscript { repositories { google() mavenCentral() } dependencies { classpath "com.android.tools.build:gradle:7.0.3" } } android { compileSdk 32 defaultConfig { applicationId "de.cweiske.ouya.louyapi" minSdk 16 targetSdk 32 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_6 targetCompatibility JavaVersion.VERSION_1_6 } compileSdkVersion 16 } if (project.hasProperty("signingconfigfile") && new File(project.property("signingconfigfile")).exists()) { apply from: project.property("signingconfigfile"); }