Skip to content

Commit

Permalink
[ADD/#16] daily jelly 액티비티 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
b1urrrr committed Apr 13, 2023
1 parent 9d218dc commit 63dc15e
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 2 deletions.
9 changes: 7 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">

<uses-permission android:name="android.permission.INTERNET" />

<application
android:name="com.release.keyneez.KeyneezApplication"
android:allowBackup="true"
Expand All @@ -15,15 +16,19 @@
android:theme="@style/Theme.Keyneez"
android:usesCleartextTraffic="true"
tools:targetApi="31">
<activity
android:name=".DailyJellyActivity"
android:exported="false" />
<activity
android:name=".presentation.main.MainActivity"
android:screenOrientation="portrait"
android:exported="true">
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>
</application>

</manifest>
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package com.release.keyneez.presentation.dailyjelly

import android.os.Bundle
import com.release.keyneez.R
import com.release.keyneez.databinding.ActivityDailyJellyBinding
import com.release.keyneez.util.binding.BindingActivity
import dagger.hilt.android.AndroidEntryPoint

@AndroidEntryPoint
class DailyJellyActivity :
BindingActivity<ActivityDailyJellyBinding>(R.layout.activity_daily_jelly) {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
}
}
16 changes: 16 additions & 0 deletions app/src/main/res/layout/activity_daily_jelly.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".presentation.dailyjelly.DailyJellyActivity">

<data>

</data>

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

</androidx.constraintlayout.widget.ConstraintLayout>
</layout>

0 comments on commit 63dc15e

Please sign in to comment.