Skip to content
This repository was archived by the owner on Jul 20, 2026. It is now read-only.

Commit 7c1b2ed

Browse files
authored
Merge pull request #17 from TheRefraction/first-structure
first project structure
2 parents 1f0197e + fa2b9c3 commit 7c1b2ed

30 files changed

Lines changed: 377 additions & 108 deletions

.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 & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/appInsightsSettings.xml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.idea/deploymentTargetSelector.xml

Lines changed: 11 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: 1 addition & 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: 61 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/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: 6 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle.kts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,20 @@ plugins {
44
}
55

66
android {
7-
namespace = "fr.utbm.pilulito"
7+
namespace = "com.example.senpos"
88
compileSdk {
9-
version = release(36) {
10-
minorApiLevel = 1
11-
}
9+
version = release(36)
1210
}
1311

1412
defaultConfig {
15-
applicationId = "fr.utbm.pilulito"
13+
applicationId = "com.example.senpos"
1614
minSdk = 24
1715
targetSdk = 36
1816
versionCode = 1
1917
versionName = "1.0"
2018

2119
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
20+
vectorDrawables.useSupportLibrary = true
2221
}
2322

2423
buildTypes {
@@ -40,6 +39,7 @@ android {
4039
}
4140

4241
dependencies {
42+
implementation(libs.androidx.compose.material.icons.extended)
4343
implementation(libs.androidx.core.ktx)
4444
implementation(libs.androidx.lifecycle.runtime.ktx)
4545
implementation(libs.androidx.activity.compose)
@@ -48,6 +48,8 @@ dependencies {
4848
implementation(libs.androidx.compose.ui.graphics)
4949
implementation(libs.androidx.compose.ui.tooling.preview)
5050
implementation(libs.androidx.compose.material3)
51+
implementation(libs.androidx.navigation.runtime.ktx)
52+
implementation(libs.androidx.navigation.compose)
5153
testImplementation(libs.junit)
5254
androidTestImplementation(libs.androidx.junit)
5355
androidTestImplementation(libs.androidx.espresso.core)

0 commit comments

Comments
 (0)