Skip to content

Commit

Permalink
[feat] #1 app
Browse files Browse the repository at this point in the history
  • Loading branch information
Sangwook123 committed Apr 10, 2024
1 parent 9f991eb commit 7eb84e9
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 115 deletions.
65 changes: 0 additions & 65 deletions app/build.gradle

This file was deleted.

23 changes: 23 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
@Suppress("DSL_SCOPE_VIOLATION")
plugins {
alias(libs.plugins.sopt.android.application)
alias(libs.plugins.sopt.android.application.compose)
alias(libs.plugins.sopt.android.hilt)
}

android {
namespace = "org.sopt.now"

defaultConfig {
applicationId = "com.sopt.now"
versionCode = 1
versionName = "1.0"
}
}

dependencies {
implementation(projects.core.ui)
implementation(projects.core.model)
implementation(projects.core.designsystem)
implementation(projects.feature.main)
}
2 changes: 1 addition & 1 deletion app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
# proguardFiles setting in build.gradle.kts.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
Expand Down
7 changes: 4 additions & 3 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="com.sopt.now.compose.SoptApp"
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
Expand All @@ -13,10 +14,10 @@
android:theme="@style/Theme.NOWSOPTAndroid"
tools:targetApi="31">
<activity
android:name=".MainActivity"
android:name="org.sopt.main.navigator.MainActivity"
android:exported="true"
android:label="@string/app_name"
android:theme="@style/Theme.NOWSOPTAndroid">
android:label="@string/title_activity_main"
android:theme="@style/Theme.NOWSOPTAndroid" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down
46 changes: 0 additions & 46 deletions app/src/main/java/com/sopt/now/compose/MainActivity.kt

This file was deleted.

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

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

@HiltAndroidApp
class SoptApp : Application() {
}

0 comments on commit 7eb84e9

Please sign in to comment.