Skip to content

Commit

Permalink
Feat:
Browse files Browse the repository at this point in the history
body:

footer
  • Loading branch information
JieunYume committed May 25, 2023
1 parent 53b227b commit f8c7e9e
Show file tree
Hide file tree
Showing 18 changed files with 218 additions and 494 deletions.
1 change: 1 addition & 0 deletions .idea/gradle.xml

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

5 changes: 4 additions & 1 deletion .idea/misc.xml

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

11 changes: 11 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ android {
}
}


dependencies {

implementation 'androidx.appcompat:appcompat:1.5.1'
Expand All @@ -40,6 +41,7 @@ dependencies {
implementation 'androidx.annotation:annotation:1.3.0'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.4.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
Expand All @@ -53,4 +55,13 @@ dependencies {
//Glide 가져오기
implementation 'com.github.bumptech.glide:glide:4.11.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'

//volley
implementation 'com.android.volley:volley:1.2.1'

//OCR
implementation 'com.rmtheis:tess-two:5.4.1'

//firebase Storage
implementation 'com.google.firebase:firebase-storage'
}
55 changes: 49 additions & 6 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.INTERNET" />
<!-- 인터넷 권한 설정 -->
<uses-permission android:name="android.permission.INTERNET" /> <!-- 인터넷 연결 확인 -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <!-- 카메라 -->
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_CONTACTS" />

<application
android:allowBackup="true"
Expand All @@ -13,20 +18,58 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Bookshelf"
android:usesCleartextTraffic="true"
tools:targetApi="31">
<activity
android:name=".ui.login.LoginActivity"
android:name=".user.UserProfileActivity"
android:exported="false">
<meta-data
android:name="android.app.lib_name"
android:value="" />
</activity>

<provider
android:name="androidx.core.content.FileProvider"
android:authorities="org.techtown.bookshelf"
android:exported="false"
android:label="@string/title_activity_login" />
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/filepaths" />
</provider>

<activity
android:name=".camera.CameraActivity"
android:exported="false">
<meta-data
android:name="android.app.lib_name"
android:value="" />
</activity>
<activity
android:name=".friend.SearchFriendActivity"
android:exported="false">
<meta-data
android:name="android.app.lib_name"
android:value="" />
</activity>
<activity
android:name=".friend.FriendListActivity"
android:exported="false">
<meta-data
android:name="android.app.lib_name"
android:value="" />
</activity>
<activity android:name=".login.RegisterActivity" />
<activity android:name=".user.MainActivity" />
<activity
android:name=".BookSearchActivity"
android:name=".book.search.BookSearchActivity"
android:exported="false">
<meta-data
android:name="android.app.lib_name"
android:value="" />
</activity>
<activity
android:name=".MainActivity"
android:name=".login.LoginActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand Down
68 changes: 0 additions & 68 deletions app/src/main/java/org/techtown/bookshelf/Book.java

This file was deleted.

90 changes: 0 additions & 90 deletions app/src/main/java/org/techtown/bookshelf/BookAdapter.java

This file was deleted.

Loading

0 comments on commit f8c7e9e

Please sign in to comment.