Skip to content

Commit 51dc81c

Browse files
committed
Initial commit
0 parents  commit 51dc81c

221 files changed

Lines changed: 8411 additions & 0 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/caches
5+
/.idea/libraries
6+
/.idea/modules.xml
7+
/.idea/workspace.xml
8+
/.idea/navEditor.xml
9+
/.idea/assetWizardSettings.xml
10+
.DS_Store
11+
/build
12+
/captures
13+
.externalNativeBuild
14+
.cxx
15+
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/androidTestResultsUserPreferences.xml

Lines changed: 22 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/deploymentTargetSelector.xml

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

.idea/gradle.xml

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

Lines changed: 9 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.kts

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
plugins {
2+
alias(libs.plugins.android.application)
3+
}
4+
5+
android {
6+
namespace = "com.example.fullstore"
7+
compileSdk = 34
8+
9+
defaultConfig {
10+
applicationId = "com.example.fullstore"
11+
minSdk = 24
12+
targetSdk = 34
13+
versionCode = 1
14+
versionName = "1.0"
15+
16+
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
17+
}
18+
19+
buildTypes {
20+
release {
21+
isMinifyEnabled = false
22+
proguardFiles(
23+
getDefaultProguardFile("proguard-android-optimize.txt"),
24+
"proguard-rules.pro"
25+
)
26+
}
27+
}
28+
compileOptions {
29+
sourceCompatibility = JavaVersion.VERSION_1_8
30+
targetCompatibility = JavaVersion.VERSION_1_8
31+
}
32+
buildFeatures {
33+
viewBinding = true
34+
}
35+
}
36+
37+
dependencies {
38+
39+
implementation(libs.appcompat)
40+
implementation(libs.material)
41+
implementation(libs.activity)
42+
implementation(libs.constraintlayout)
43+
implementation (libs.retrofit)
44+
implementation(libs.retrofit.gson)
45+
implementation (libs.okhttp)
46+
implementation(libs.okhttp.logging.interceptor)
47+
implementation (libs.stripe)
48+
implementation(libs.glide)
49+
implementation(libs.lifecycle.livedata.ktx)
50+
implementation(libs.lifecycle.viewmodel.ktx)
51+
implementation(libs.navigation.fragment)
52+
implementation(libs.navigation.ui)
53+
implementation (libs.cardview)
54+
annotationProcessor(libs.glide.compiler)
55+
testImplementation(libs.junit)
56+
androidTestImplementation(libs.ext.junit)
57+
androidTestImplementation(libs.espresso.core)
58+
59+
60+
testImplementation("androidx.arch.core:core-testing:2.1.0")
61+
testImplementation ("org.mockito:mockito-core:4.6.1")
62+
testImplementation ("org.mockito:mockito-inline:4.6.1")
63+
64+
65+
}

0 commit comments

Comments
 (0)