Skip to content
Open

Ssu #10

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .idea/deploymentTargetDropDown.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 5 additions & 6 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,25 @@

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

<!--갤러리 권한-->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:usesCleartextTraffic="true"
android:theme="@style/Theme.Mechelin"
android:usesCleartextTraffic="true"
tools:replace="android:theme">

<activity
android:name="com.example.mechelin.ui.splash.SplashActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
Expand All @@ -35,9 +34,9 @@
</activity>
<activity android:name=".ui.search.SearchPlaceActivity"/>
<activity android:name=".ui.main.WritingActivity"
android:windowSoftInputMode="adjustPan"/>
android:windowSoftInputMode="adjustPan"/>

<activity android:name=".ui.main.SearchActivity"/>
<activity android:name=".ui.main.PopupScoreActivity" android:theme="@style/Transparent"/>
</application>

</manifest>
Original file line number Diff line number Diff line change
Expand Up @@ -279,8 +279,8 @@ class WritingActivity: AppCompatActivity(){
.setMessage("식당 저장 및 리뷰 작성을 실패하였습니다.")
.create()
.show()
}
}
}
}


Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package com.example.mechelin.ui.mypage

import androidx.appcompat.app.AppCompatActivity

class MypageActivity: AppCompatActivity() {


}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package com.example.mechelin.ui.resign

class ResignActivity {

}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
<stroke android:color="#d5cece"
android:width="1dp"/>
</shape>

</item>

</selector>
Loading