apply plugin: 'com.android.library' apply plugin: 'maven-publish' apply from: '../.winboll/winboll_lib_build.gradle' apply from: '../.winboll/winboll_lint_build.gradle' android { namespace 'cc.winboll.studio.libaes' compileSdkVersion 32 buildToolsVersion "33.0.3" defaultConfig { minSdkVersion 24 targetSdkVersion 30 } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_11 targetCompatibility JavaVersion.VERSION_11 } } dependencies { //api 'cc.winboll.studio:winboll-shared:1.6.5' api 'io.github.medyo:android-about-page:2.0.0' api 'com.github.getActivity:ToastUtils:10.5' api 'com.jcraft:jsch:0.1.55' api 'org.jsoup:jsoup:1.13.1' api 'com.squareup.okhttp3:okhttp:4.4.1' api 'androidx.appcompat:appcompat:1.0.0' api 'androidx.fragment:fragment:1.0.0' api 'com.google.android.material:material:1.0.0' // https://github.com/baoyongzhang/android-PullRefreshLayout api 'com.baoyz.pullrefreshlayout:library:1.2.0' api 'cc.winboll.studio:libapputils:9.2.1' api 'cc.winboll.studio:libappbase:1.0.3' api fileTree(dir: 'libs', include: ['*.jar']) }