Commit 096cca030e039bcf42f2cacafceee3010ec1b24e

Authored by 王大哥
0 parents

初始化文件

Showing 1 changed file with 55 additions and 0 deletions
.gitignore 0 → 100644
  1 +++ a/.gitignore
  1 +# Android Studio / IntelliJ
  2 +.idea
  3 +*.iml
  4 +*.hprof
  5 +.gradle
  6 +local.properties
  7 +.DS_Store
  8 +
  9 +# 编译输出
  10 +/build/
  11 +*/build/
  12 +
  13 +# 生成文件
  14 +/captures/
  15 +.navigation/
  16 +*.apk
  17 +*.ap_
  18 +*.db
  19 +*.log
  20 +*.p12
  21 +*.key
  22 +*.jks
  23 +*.keystore
  24 +*.dex
  25 +*.class
  26 +
  27 +# 外部库
  28 +*.jar
  29 +*.aar
  30 +*.crashlytics
  31 +/.cxx/
  32 +
  33 +# 本地配置文件
  34 +/gradle/
  35 +/app/google-services.json
  36 +/app/src/debug/google-services.json
  37 +/app/src/release/google-services.json
  38 +
  39 +# Proguard 文件
  40 +*.pro
  41 +
  42 +# Android NDK
  43 +/obj/
  44 +/.ndk/
  45 +
  46 +# Google Services (例如 Firebase)
  47 +.firebase/
  48 +crashlytics.properties
  49 +crashlytics-build.properties
  50 +fabric.properties
  51 +/google-services.json
  52 +
  53 +# 库和编译缓存
  54 +.cxx/
  55 +.externalNativeBuild/
0 56 \ No newline at end of file
... ...