Skip to content

Commit

Permalink
[remove] #1 unnecessary
Browse files Browse the repository at this point in the history
  • Loading branch information
Sangwook123 committed Apr 10, 2024
1 parent 48cfc23 commit 2475960
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 68 deletions.
13 changes: 5 additions & 8 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@Suppress("DSL_SCOPE_VIOLATION")
plugins {
alias(libs.plugins.sopt.android.application)
alias(libs.plugins.sopt.android.hilt)
Expand All @@ -24,12 +25,8 @@ android {
}

dependencies {

implementation("androidx.core:core-ktx:1.12.0")
implementation("androidx.appcompat:appcompat:1.6.1")
implementation("com.google.android.material:material:1.11.0")
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
implementation(projects.core.ui)
implementation(projects.core.model)
implementation(projects.core.designsystem)
implementation(projects.feature.main)
}
12 changes: 10 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
xmlns:tools="http://schemas.android.com/tools">

<application
android:name=".SoptApp"
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
Expand All @@ -13,14 +14,21 @@
android:theme="@style/Theme.NOWSOPTAndroid"
tools:targetApi="31">
<activity
android:name=".MainActivity"
android:exported="true">
android:name="org.sopt.main.login.LoginActivity"
android:exported="true"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="org.sopt.main.signup.SignupActivity"
android:exported="false" />
<activity
android:name="org.sopt.main.main.MainActivity"
android:exported="false" />
</application>

</manifest>
15 changes: 0 additions & 15 deletions app/src/main/java/com/sopt/now/MainActivity.kt

This file was deleted.

8 changes: 8 additions & 0 deletions app/src/main/java/com/sopt/now/SoptApp.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package com.sopt.now

import android.app.Application
import dagger.hilt.android.HiltAndroidApp

@HiltAndroidApp
class SoptApp : Application() {
}
19 changes: 0 additions & 19 deletions app/src/main/res/layout/activity_main.xml

This file was deleted.

7 changes: 0 additions & 7 deletions app/src/main/res/values-night/themes.xml

This file was deleted.

5 changes: 0 additions & 5 deletions app/src/main/res/values/colors.xml

This file was deleted.

3 changes: 0 additions & 3 deletions app/src/main/res/values/strings.xml

This file was deleted.

9 changes: 0 additions & 9 deletions app/src/main/res/values/themes.xml

This file was deleted.

0 comments on commit 2475960

Please sign in to comment.