Skip to content

Commit 9394adb

Browse files
Initial Commit
0 parents  commit 9394adb

File tree

81 files changed

+4253
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+4253
-0
lines changed

.gitignore

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
2+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
3+
4+
# User-specific stuff
5+
.idea/**/workspace.xml
6+
.idea/**/tasks.xml
7+
.idea/**/usage.statistics.xml
8+
.idea/**/dictionaries
9+
.idea/**/shelf
10+
11+
# AWS User-specific
12+
.idea/**/aws.xml
13+
14+
# Generated files
15+
.idea/**/contentModel.xml
16+
17+
# Sensitive or high-churn files
18+
.idea/**/dataSources/
19+
.idea/**/dataSources.ids
20+
.idea/**/dataSources.local.xml
21+
.idea/**/sqlDataSources.xml
22+
.idea/**/dynamic.xml
23+
.idea/**/uiDesigner.xml
24+
.idea/**/dbnavigator.xml
25+
26+
# Gradle
27+
.idea/**/gradle.xml
28+
.idea/**/libraries
29+
30+
# Gradle and Maven with auto-import
31+
# When using Gradle or Maven with auto-import, you should exclude module files,
32+
# since they will be recreated, and may cause churn. Uncomment if using
33+
# auto-import.
34+
# .idea/artifacts
35+
# .idea/compiler.xml
36+
# .idea/jarRepositories.xml
37+
# .idea/modules.xml
38+
# .idea/*.iml
39+
# .idea/modules
40+
# *.iml
41+
# *.ipr
42+
43+
# IntelliJ
44+
out/
45+
46+
# Editor-based Rest Client
47+
.idea/httpRequests
48+
49+
# Android studio 3.1+ serialized cache file
50+
.idea/caches/build_file_checksums.ser
51+
52+
# Custom Private files
53+
/src/app/utils/firebase/firebase.config.ts
54+
/.env.local-server
55+
56+
# .idea/.gitignore
57+
.idea/shelf/
58+
.idea/workspace.xml
59+
.idea/httpRequests/
60+
.idea/dataSources/
61+
.idea/dataSources.xml
62+
63+
*.iml
64+
.gradle
65+
/local.properties
66+
/.idea/caches
67+
/.idea/libraries
68+
/.idea/modules.xml
69+
/.idea/workspace.xml
70+
/.idea/navEditor.xml
71+
/.idea/assetWizardSettings.xml
72+
.DS_Store
73+
/build
74+
/captures
75+
.externalNativeBuild
76+
.cxx
77+
local.properties

.idea/.gitignore

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

.idea/.name

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

.idea/codeStyles/Project.xml

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

.idea/codeStyles/codeStyleConfig.xml

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

.idea/compiler.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/misc.xml

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

.idea/vcs.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.

app/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

app/build.gradle

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
plugins {
2+
id 'com.android.application'
3+
}
4+
5+
android {
6+
namespace 'com.aryanstein.mcad.tasktimer'
7+
compileSdk 33
8+
9+
defaultConfig {
10+
applicationId "com.aryanstein.mcad.tasktimer"
11+
minSdk 24
12+
targetSdk 33
13+
versionCode 1
14+
versionName "1.0"
15+
16+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
17+
}
18+
19+
buildTypes {
20+
release {
21+
minifyEnabled false
22+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
23+
}
24+
}
25+
compileOptions {
26+
sourceCompatibility JavaVersion.VERSION_1_8
27+
targetCompatibility JavaVersion.VERSION_1_8
28+
}
29+
}
30+
31+
dependencies {
32+
33+
implementation 'androidx.appcompat:appcompat:1.6.1'
34+
implementation 'com.google.android.material:material:1.8.0'
35+
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
36+
implementation 'androidx.navigation:navigation-fragment:2.5.3'
37+
implementation 'androidx.navigation:navigation-ui:2.5.3'
38+
testImplementation 'junit:junit:4.13.2'
39+
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
40+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
41+
}

0 commit comments

Comments
 (0)