apply plugin: 'com.android.application' android { compileSdk = 36 defaultConfig { applicationId "com.example.functiontest" minSdk = 28 targetSdk = 36 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } namespace = 'com.example.functiontest' compileOptions { targetCompatibility JavaVersion.VERSION_11 sourceCompatibility JavaVersion.VERSION_11 } gradle.projectsEvaluated { tasks.withType(JavaCompile) { // options.compilerArgs << "-Xlint:deprecation" options.compilerArgs << "-Xlint:unchecked" } } } dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' // testImplementation 'junit:junit:4.13.2' // androidTestImplementation 'androidx.test.ext:junit:1.1.4' // androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0' implementation project(path: ':RAUtilsLibrary') }