迁移项目

This commit is contained in:
2025-12-10 23:13:23 +08:00
parent 28fe161276
commit ea73fea4a5
67 changed files with 2459 additions and 997 deletions

36
photoview/build.gradle Normal file
View File

@@ -0,0 +1,36 @@
plugins {
alias(libs.plugins.android.library)
}
android {
namespace 'com.github.chrisbanes.photoview'
compileSdk {
version = release(36)
}
defaultConfig {
minSdk 28
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation libs.androidx.appcompat
implementation libs.material.components
testImplementation libs.junit
androidTestImplementation libs.androidx.junit
androidTestImplementation libs.androidx.espresso.core
}