init: 河南女子职业学院智慧学工考勤签到 Android 应用

功能包含:学生登录、微信授权、自定义GPS签到、预设管理、历史记录

开发者:凡笙

Made-with: Cursor
This commit is contained in:
2026-03-14 23:20:43 +08:00
commit b4b190e23c
34 changed files with 2521 additions and 0 deletions

48
app/build.gradle Normal file
View File

@@ -0,0 +1,48 @@
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
}
android {
namespace 'com.gpspunch.app'
compileSdk 34
defaultConfig {
applicationId "com.gpspunch.app"
minSdk 24
targetSdk 34
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
buildFeatures {
viewBinding true
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.11.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
implementation 'org.jsoup:jsoup:1.17.2'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3'
}