Skip to content

Commit 8902438

Browse files
committed
update
1 parent 134d5a8 commit 8902438

6 files changed

Lines changed: 168 additions & 0 deletions

File tree

.gitignore

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
# Built application files
2+
*.apk
3+
*.aar
4+
*.ap_
5+
*.aab
6+
7+
# Files for the ART/Dalvik VM
8+
*.dex
9+
10+
# Java class files
11+
*.class
12+
13+
# Generated files
14+
bin/
15+
gen/
16+
out/
17+
# Uncomment the following line in case you need and you don't have the release build type files in your app
18+
# release/
19+
20+
# Gradle files
21+
.gradle/
22+
build/
23+
24+
# Local configuration file (sdk path, etc)
25+
local.properties
26+
27+
# Proguard folder generated by Eclipse
28+
proguard/
29+
30+
# Log Files
31+
*.log
32+
33+
# Android Studio Navigation editor temp files
34+
.navigation/
35+
36+
# Android Studio captures folder
37+
captures/
38+
39+
# IntelliJ
40+
*.iml
41+
.idea/workspace.xml
42+
.idea/tasks.xml
43+
.idea/gradle.xml
44+
.idea/assetWizardSettings.xml
45+
.idea/dictionaries
46+
.idea/libraries
47+
# Android Studio 3 in .gitignore file.
48+
.idea/caches
49+
.idea/modules.xml
50+
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
51+
.idea/navEditor.xml
52+
53+
# Keystore files
54+
# Uncomment the following lines if you do not want to check your keystore files in.
55+
#*.jks
56+
#*.keystore
57+
58+
# External native build folder generated in Android Studio 2.2 and later
59+
.externalNativeBuild
60+
.cxx/
61+
62+
# Google Services (e.g. APIs or Firebase)
63+
# google-services.json
64+
65+
# Freeline
66+
freeline.py
67+
freeline/
68+
freeline_project_description.json
69+
70+
# fastlane
71+
fastlane/report.xml
72+
fastlane/Preview.html
73+
fastlane/screenshots
74+
fastlane/test_output
75+
fastlane/readme.md
76+
77+
# Version control
78+
vcs.xml
79+
80+
# lint
81+
lint/intermediates/
82+
lint/generated/
83+
lint/outputs/
84+
lint/tmp/
85+
# lint/reports/
86+
87+
# Android Profiling
88+
*.hprof
89+
90+
# macOS
91+
.DS_Store
92+
93+
# Windows
94+
Thumbs.db
95+
ehthumbs.db
96+
Desktop.ini
97+
98+
# Linux
99+
*~
100+
101+
# Temporary files
102+
*.swp
103+
*.swo
104+
*~
105+
106+
# Kotlin
107+
*.kt.swp

.idea/.gitignore

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/markdown.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[versions]
2+
kotlin = "2.3.0"
3+
agp = "9.0.0"
4+
core-ktx = "1.17.0"
5+
appcompat = "1.7.1"
6+
material = "1.13.0"
7+
constraintlayout = "2.2.1"
8+
talsec-security = "18.0.1"
9+
10+
[libraries]
11+
kotlin-stdlib = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "kotlin" }
12+
core-ktx = { module = "androidx.core:core-ktx", version.ref = "core-ktx" }
13+
appcompat = { module = "androidx.appcompat:appcompat", version.ref = "appcompat" }
14+
material = { module = "com.google.android.material:material", version.ref = "material" }
15+
constraintlayout = { module = "androidx.constraintlayout:constraintlayout", version.ref = "constraintlayout" }
16+
talsec-security = { module = "com.aheaditec.talsec.security:TalsecSecurity-Community", version.ref = "talsec-security" }
17+
18+
[plugins]
19+
android-application = { id = "com.android.application", version.ref = "agp" }
20+
21+
[bundles]
22+
androidx = ["core-ktx", "appcompat", "material", "constraintlayout"]

0 commit comments

Comments
 (0)