apply plugin: 'com.android.application' android { compileSdkVersion 32 defaultConfig { applicationId "com.yanyi.basepermission" minSdkVersion 15 targetSdkVersion 32 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation 'androidx.appcompat:appcompat:1.2.0' testImplementation 'junit:junit:4.12' androidTestImplementation 'androidx.test.ext:junit:1.1.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' implementation 'androidx.core:core-ktx:1.3.2' implementation project(':permissionlib') // implementation('com.yanyi.benyanyi:PermissionHelper-kt:1.1.3') } repositories { mavenCentral() }