Initial commit: Android app with compileSdk 34, minSdk 24, targetSdk 34

This commit is contained in:
xiajiid
2026-02-08 00:32:18 +08:00
commit eeb820342f
12 changed files with 278 additions and 0 deletions

44
README.md Normal file
View File

@@ -0,0 +1,44 @@
# LogCam
A simple Android application demo project.
## Project Structure
```
logcam/
├── app/
│ ├── src/main/
│ │ ├── java/com/example/app/
│ │ │ └── MainActivity.kt
│ │ ├── res/
│ │ │ ├── layout/
│ │ │ │ └── activity_main.xml
│ │ │ ├── values/
│ │ │ │ ├── colors.xml
│ │ │ │ ├── strings.xml
│ │ │ │ └── themes.xml
│ │ │ └── mipmap-*/
│ │ └── AndroidManifest.xml
│ └── build.gradle
├── build.gradle
├── settings.gradle
├── gradle.properties
└── .gitignore
```
## Configuration
- **compileSdkVersion**: 34
- **minSdkVersion**: 24
- **targetSdkVersion**: 34
- **applicationId**: com.example.app
## Getting Started
1. Clone the repository
2. Open in Android Studio
3. Build and run
## License
MIT