├── gc.properties
├── .gitignore
├── settings.gradle
├── bookcavelogo.png
├── gradle-wrapper.jar
├── bookcavelogo_round.png
├── BookcaveLogo-playstore.png
├── bookcavelogo_foreground.png
├── README.md
├── bookcavelogo_background.xml
├── preloaded_fonts.xml
├── gradle-wrapper.properties
├── styles.xml
├── bookcavelogo.xml
├── bookcavelogo_round.xml
├── ic_home_black_24dp.xml
├── nunito.xml
├── local.properties
├── ic_dashboard_black_24dp.xml
├── actionbarmenu.xml
├── home_seller.xml
├── dimens.xml
├── ExampleUnitTest.java
├── activity_favourites.xml
├── ic_menu_slideshow.xml
├── ic_menu_gallery.xml
├── ic_notifications_black_24dp.xml
├── activity_preview_book.xml
├── colors.xml
├── ic_menu_camera.xml
├── bottom_nav_menu.xml
├── proguard-rules.pro
├── activity_order_history_c.xml
├── activity_payment_history_c.xml
├── fragment_seller_pay_history.xml
├── content_home_seller.xml
├── fragment_seller_current_orders.xml
├── mobilec_navigation.xml
├── activity_home_seller.xml
├── app_bar_home_seller.xml
├── gradle.properties
├── google-services.json
├── fragment_booklist.xml
├── activity_home_customer.xml
├── activity_placed.xml
├── nav_header_home_seller.xml
├── fragment_slideshow.xml
├── activity_main.xml
├── fragment_homec.xml
├── activity_home_seller_drawer.xml
├── row_book_api_result.xml
├── row_book_search_main.xml
├── row_book_search_result.xml
├── row_book_list.xml
├── gradlew.bat
├── row_order_cus_list.xml
├── row_approve_list.xml
├── fragment_gallery.xml
├── activity_about_app.xml
├── row_filter_s_list.xml
├── activity_change_address.xml
├── .github
└── workflows
│ └── azure-functions-app-java.yml
├── fragment_search.xml
├── mobile_navigation.xml
├── font_certs.xml
├── activity_forgot_password.xml
├── fragment_home.xml
├── activity_book_info.xml
├── activity_contact_developer.xml
├── activity_customer_login.xml
├── activity_view_order_customer.xml
├── gradlew
├── activity_update_order.xml
├── fragment_about.xml
├── activity_profile_customer.xml
├── activity_create_account_customer.xml
├── strings.xml
├── activity_book_info_order.xml
├── fragment_seller_profile.xml
├── fragment_profile.xml
├── activity_add_book.xml
├── activity_creat_account_seller.xml
└── activity_buy_book.xml
/gc.properties:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | rootProject.name='BookCave'
2 | include ':app'
3 |
--------------------------------------------------------------------------------
/bookcavelogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudheerxdev/java-project/HEAD/bookcavelogo.png
--------------------------------------------------------------------------------
/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudheerxdev/java-project/HEAD/gradle-wrapper.jar
--------------------------------------------------------------------------------
/bookcavelogo_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudheerxdev/java-project/HEAD/bookcavelogo_round.png
--------------------------------------------------------------------------------
/BookcaveLogo-playstore.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudheerxdev/java-project/HEAD/BookcaveLogo-playstore.png
--------------------------------------------------------------------------------
/bookcavelogo_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sudheerxdev/java-project/HEAD/bookcavelogo_foreground.png
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # BookCave
2 | Android app to sell and rent books in a city. Done as a project for btech 4th sem
3 |
4 | it's still WORK IN PROGRESS.
5 |
--------------------------------------------------------------------------------
/bookcavelogo_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #FFFFFF
4 |
--------------------------------------------------------------------------------
/preloaded_fonts.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | - @font/nunito
5 |
6 |
7 |
--------------------------------------------------------------------------------
/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Thu Jul 03 19:19:20 IST 2025
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
5 | zipStoreBase=GRADLE_USER_HOME
6 | zipStorePath=wrapper/dists
7 |
--------------------------------------------------------------------------------
/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
--------------------------------------------------------------------------------
/bookcavelogo.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/bookcavelogo_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/ic_home_black_24dp.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/nunito.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
--------------------------------------------------------------------------------
/local.properties:
--------------------------------------------------------------------------------
1 | ## This file must *NOT* be checked into Version Control Systems,
2 | # as it contains information specific to your local configuration.
3 | #
4 | # Location of the SDK. This is only used by Gradle.
5 | # For customization when using a Version Control System, please read the
6 | # header note.
7 | #Wed Oct 27 09:17:50 PDT 2021
8 | sdk.dir=C\:\\Users\\Dell\\AppData\\Local\\Android\\Sdk
9 |
--------------------------------------------------------------------------------
/ic_dashboard_black_24dp.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/actionbarmenu.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/home_seller.xml:
--------------------------------------------------------------------------------
1 |
2 |
12 |
--------------------------------------------------------------------------------
/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 |
6 | 8dp
7 | 176dp
8 | 16dp
9 |
10 |
--------------------------------------------------------------------------------
/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package com.example.bookcave;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/activity_favourites.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
--------------------------------------------------------------------------------
/ic_menu_slideshow.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/ic_menu_gallery.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/ic_notifications_black_24dp.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/activity_preview_book.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
14 |
--------------------------------------------------------------------------------
/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #4096FF
4 |
5 | #4096FF
6 | #f4d160
7 | #000000
8 | #4E4E4E
9 | #EDEDED
10 | #ffffff
11 | #162e4c
12 | #FF0000
13 | #14AF4D
14 |
15 |
16 |
--------------------------------------------------------------------------------
/ic_menu_camera.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
12 |
13 |
--------------------------------------------------------------------------------
/bottom_nav_menu.xml:
--------------------------------------------------------------------------------
1 |
2 |
20 |
--------------------------------------------------------------------------------
/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # You can control the set of applied configuration files using the
3 | # proguardFiles setting in build.gradle.
4 | #
5 | # For more details, see
6 | # http://developer.android.com/guide/developing/tools/proguard.html
7 |
8 | # If your project uses WebView with JS, uncomment the following
9 | # and specify the fully qualified class name to the JavaScript interface
10 | # class:
11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12 | # public *;
13 | #}
14 |
15 | # Uncomment this to preserve the line number information for
16 | # debugging stack traces.
17 | #-keepattributes SourceFile,LineNumberTable
18 |
19 | # If you keep the line number information, uncomment this to
20 | # hide the original source file name.
21 | #-renamesourcefileattribute SourceFile
22 |
--------------------------------------------------------------------------------
/activity_order_history_c.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
14 |
15 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/activity_payment_history_c.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
14 |
15 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/fragment_seller_pay_history.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
15 |
16 |
20 |
21 |
--------------------------------------------------------------------------------
/content_home_seller.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
20 |
--------------------------------------------------------------------------------
/fragment_seller_current_orders.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
16 |
17 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/mobilec_navigation.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
13 |
14 |
19 |
20 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/activity_home_seller.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
15 |
16 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/app_bar_home_seller.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
13 |
14 |
20 |
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 | # IDE (e.g. Android Studio) users:
3 | # Gradle settings configured through the IDE *will override*
4 | # any settings specified in this file.
5 | # For more details on how to configure your build environment visit
6 | # http://www.gradle.org/docs/current/userguide/build_environment.html
7 | # Specifies the JVM arguments used for the daemon process.
8 | # The setting is particularly useful for tweaking memory settings.
9 | org.gradle.jvmargs=-Xmx1536m
10 | # When configured, Gradle will run in incubating parallel mode.
11 | # This option should only be used with decoupled projects. More details, visit
12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
13 | # org.gradle.parallel=true
14 | # AndroidX package structure to make it clearer which packages are bundled with the
15 | # Android operating system, and which are packaged with your app's APK
16 | # https://developer.android.com/topic/libraries/support-library/androidx-rn
17 | android.useAndroidX=true
18 | # Automatically convert third-party libraries to use AndroidX
19 | android.enableJetifier=true
20 |
21 |
--------------------------------------------------------------------------------
/google-services.json:
--------------------------------------------------------------------------------
1 | {
2 | "project_info": {
3 | "project_number": "709053087055",
4 | "project_id": "dbookcave",
5 | "storage_bucket": "dbookcave.appspot.com"
6 | },
7 | "client": [
8 | {
9 | "client_info": {
10 | "mobilesdk_app_id": "1:709053087055:android:8e7e89095e6eb1696c193a",
11 | "android_client_info": {
12 | "package_name": "com.example.bookcave"
13 | }
14 | },
15 | "oauth_client": [
16 | {
17 | "client_id": "709053087055-179vf0g8h4a942iul9v52g5i524rl22m.apps.googleusercontent.com",
18 | "client_type": 3
19 | }
20 | ],
21 | "api_key": [
22 | {
23 | "current_key": "AIzaSyAu0VQVxcQv0Be7EDJ9zP2zDylh2v5A1N8"
24 | }
25 | ],
26 | "services": {
27 | "appinvite_service": {
28 | "other_platform_oauth_client": [
29 | {
30 | "client_id": "709053087055-179vf0g8h4a942iul9v52g5i524rl22m.apps.googleusercontent.com",
31 | "client_type": 3
32 | }
33 | ]
34 | }
35 | }
36 | }
37 | ],
38 | "configuration_version": "1"
39 | }
--------------------------------------------------------------------------------
/fragment_booklist.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
14 |
15 |
23 |
24 |
28 |
29 |
30 |
31 |
32 |
33 |
--------------------------------------------------------------------------------
/activity_home_customer.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
19 |
20 |
31 |
32 |
--------------------------------------------------------------------------------
/activity_placed.xml:
--------------------------------------------------------------------------------
1 |
2 |
12 |
13 |
14 |
15 |
21 |
22 |
28 |
41 |
--------------------------------------------------------------------------------
/nav_header_home_seller.xml:
--------------------------------------------------------------------------------
1 |
2 |
14 |
15 |
22 |
23 |
29 |
30 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/fragment_slideshow.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
17 |
21 |
27 |
28 |
32 |
33 |
37 |
38 |
39 |
--------------------------------------------------------------------------------
/activity_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
21 |
22 |
36 |
37 |
--------------------------------------------------------------------------------
/fragment_homec.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
20 |
21 |
22 |
25 |
26 |
32 |
33 |
37 |
38 |
43 |
44 |
45 |
--------------------------------------------------------------------------------
/activity_home_seller_drawer.xml:
--------------------------------------------------------------------------------
1 |
2 |
55 |
--------------------------------------------------------------------------------
/row_book_api_result.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
17 |
18 |
23 |
24 |
32 |
33 |
41 |
42 |
52 |
53 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/row_book_search_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
17 |
18 |
23 |
24 |
32 |
33 |
41 |
42 |
52 |
53 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/row_book_search_result.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
17 |
18 |
23 |
24 |
32 |
33 |
41 |
42 |
52 |
53 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/row_book_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
12 |
18 |
19 |
24 |
25 |
33 |
34 |
42 |
43 |
53 |
63 |
64 |
65 |
66 |
67 |
--------------------------------------------------------------------------------
/gradlew.bat:
--------------------------------------------------------------------------------
1 | @if "%DEBUG%" == "" @echo off
2 | @rem ##########################################################################
3 | @rem
4 | @rem Gradle startup script for Windows
5 | @rem
6 | @rem ##########################################################################
7 |
8 | @rem Set local scope for the variables with windows NT shell
9 | if "%OS%"=="Windows_NT" setlocal
10 |
11 | set DIRNAME=%~dp0
12 | if "%DIRNAME%" == "" set DIRNAME=.
13 | set APP_BASE_NAME=%~n0
14 | set APP_HOME=%DIRNAME%
15 |
16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
17 | set DEFAULT_JVM_OPTS=
18 |
19 | @rem Find java.exe
20 | if defined JAVA_HOME goto findJavaFromJavaHome
21 |
22 | set JAVA_EXE=java.exe
23 | %JAVA_EXE% -version >NUL 2>&1
24 | if "%ERRORLEVEL%" == "0" goto init
25 |
26 | echo.
27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
28 | echo.
29 | echo Please set the JAVA_HOME variable in your environment to match the
30 | echo location of your Java installation.
31 |
32 | goto fail
33 |
34 | :findJavaFromJavaHome
35 | set JAVA_HOME=%JAVA_HOME:"=%
36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
37 |
38 | if exist "%JAVA_EXE%" goto init
39 |
40 | echo.
41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
42 | echo.
43 | echo Please set the JAVA_HOME variable in your environment to match the
44 | echo location of your Java installation.
45 |
46 | goto fail
47 |
48 | :init
49 | @rem Get command-line arguments, handling Windows variants
50 |
51 | if not "%OS%" == "Windows_NT" goto win9xME_args
52 |
53 | :win9xME_args
54 | @rem Slurp the command line arguments.
55 | set CMD_LINE_ARGS=
56 | set _SKIP=2
57 |
58 | :win9xME_args_slurp
59 | if "x%~1" == "x" goto execute
60 |
61 | set CMD_LINE_ARGS=%*
62 |
63 | :execute
64 | @rem Setup the command line
65 |
66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
67 |
68 | @rem Execute Gradle
69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
70 |
71 | :end
72 | @rem End local scope for the variables with windows NT shell
73 | if "%ERRORLEVEL%"=="0" goto mainEnd
74 |
75 | :fail
76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
77 | rem the _cmd.exe /c_ return code!
78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
79 | exit /b 1
80 |
81 | :mainEnd
82 | if "%OS%"=="Windows_NT" endlocal
83 |
84 | :omega
85 |
--------------------------------------------------------------------------------
/row_order_cus_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
16 |
17 |
26 |
27 |
35 |
36 |
46 |
47 |
48 |
55 |
56 |
63 |
64 |
72 |
73 |
74 |
--------------------------------------------------------------------------------
/row_approve_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
16 |
17 |
26 |
27 |
35 |
36 |
46 |
47 |
48 |
54 |
55 |
65 |
74 |
75 |
--------------------------------------------------------------------------------
/fragment_gallery.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
15 |
27 |
28 |
38 |
39 |
40 |
41 |
44 |
45 |
53 |
54 |
59 |
60 |
61 |
67 |
68 |
69 |
70 |
--------------------------------------------------------------------------------
/activity_about_app.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
15 |
16 |
19 |
23 |
24 |
32 |
33 |
34 |
43 |
51 |
60 |
69 |
70 |
71 |
72 |
73 |
74 |
--------------------------------------------------------------------------------
/row_filter_s_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
16 |
17 |
21 |
30 |
38 |
39 |
40 |
48 |
49 |
59 |
60 |
61 |
67 |
68 |
77 |
78 |
--------------------------------------------------------------------------------
/activity_change_address.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
20 |
21 |
36 |
37 |
54 |
55 |
70 |
71 |
--------------------------------------------------------------------------------
/.github/workflows/azure-functions-app-java.yml:
--------------------------------------------------------------------------------
1 | # This workflow will build a Java project and deploy it to an Azure Functions App on Windows or Linux when a commit is pushed to your default branch.
2 | #
3 | # This workflow assumes you have already created the target Azure Functions app.
4 | # For instructions see https://learn.microsoft.com/en-us/azure/azure-functions/create-first-function-vs-code-java
5 | #
6 | # To configure this workflow:
7 | # 1. Set up the following secrets in your repository:
8 | # - AZURE_FUNCTIONAPP_PUBLISH_PROFILE
9 | # 2. Change env variables for your configuration.
10 | #
11 | # For more information on:
12 | # - GitHub Actions for Azure: https://github.com/Azure/Actions
13 | # - Azure Functions Action: https://github.com/Azure/functions-action
14 | # - Publish Profile: https://github.com/Azure/functions-action#using-publish-profile-as-deployment-credential-recommended
15 | # - Azure Service Principal for RBAC: https://github.com/Azure/functions-action#using-azure-service-principal-for-rbac-as-deployment-credential
16 | #
17 | # For more samples to get started with GitHub Action workflows to deploy to Azure: https://github.com/Azure/actions-workflow-samples/tree/master/FunctionApp
18 |
19 | name: Deploy Java project to Azure Function App
20 |
21 | on:
22 | push:
23 | branches: ["main"]
24 |
25 | env:
26 | AZURE_FUNCTIONAPP_NAME: 'your-app-name' # set this to your function app name on Azure
27 | POM_XML_DIRECTORY: '.' # set this to the directory which contains pom.xml file
28 | DISTRIBUTION: 'zulu' # set this to the java version to use (e.g. 'zulu', 'temurin', 'microsoft')
29 | JAVA_VERSION: '8' # set this to the java version to use (e.g. '8', '11', '17')
30 |
31 | jobs:
32 | build-and-deploy:
33 | runs-on: windows-latest # For Linux, use ubuntu-latest
34 | environment: dev
35 | steps:
36 | - name: 'Checkout GitHub Action'
37 | uses: actions/checkout@v4
38 |
39 | # If you want to use Azure RBAC instead of Publish Profile, then uncomment the task below
40 | # - name: 'Login via Azure CLI'
41 | # uses: azure/login@v1
42 | # with:
43 | # creds: ${{ secrets.AZURE_RBAC_CREDENTIALS }} # set up AZURE_RBAC_CREDENTIALS secrets in your repository
44 |
45 | - name: Setup Java Sdk ${{ env.JAVA_VERSION }}
46 | uses: actions/setup-java@v4
47 | with:
48 | distribution: ${{ env.DISTRIBUTION }}
49 | java-version: ${{ env.JAVA_VERSION }}
50 |
51 | - name: 'Restore Project Dependencies Using Mvn'
52 | shell: pwsh # For Linux, use bash
53 | run: |
54 | pushd './${{ env.POM_XML_DIRECTORY }}'
55 | mvn clean package
56 | popd
57 |
58 | - name: 'Run Azure Functions Action'
59 | uses: Azure/functions-action@v1
60 | id: fa
61 | with:
62 | app-name: ${{ env.AZURE_FUNCTIONAPP_NAME }}
63 | package: '${{ env.POM_XML_DIRECTORY }}' # if there are multiple function apps in same project, then this path will be like './${{ env.POM_XML_DIRECTORY }}/target/azure-functions/${{ env.POM_FUNCTIONAPP_NAME }'
64 | publish-profile: ${{ secrets.AZURE_FUNCTIONAPP_PUBLISH_PROFILE }} # Remove publish-profile to use Azure RBAC
65 | respect-pom-xml: true
66 |
--------------------------------------------------------------------------------
/fragment_search.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
13 |
18 |
19 |
30 |
31 |
40 |
41 |
42 |
47 |
48 |
55 |
56 |
57 |
58 |
59 |
62 |
63 |
71 |
72 |
76 |
77 |
78 |
79 |
80 |
81 |
--------------------------------------------------------------------------------
/mobile_navigation.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
13 |
14 |
17 |
18 |
23 |
26 |
27 |
30 |
31 |
32 |
37 |
38 |
43 |
44 |
49 |
50 |
51 |
56 |
61 |
66 |
71 |
76 |
--------------------------------------------------------------------------------
/font_certs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | - @array/com_google_android_gms_fonts_certs_dev
5 | - @array/com_google_android_gms_fonts_certs_prod
6 |
7 |
8 | -
9 | MIIEqDCCA5CgAwIBAgIJANWFuGx90071MA0GCSqGSIb3DQEBBAUAMIGUMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEQMA4GA1UEChMHQW5kcm9pZDEQMA4GA1UECxMHQW5kcm9pZDEQMA4GA1UEAxMHQW5kcm9pZDEiMCAGCSqGSIb3DQEJARYTYW5kcm9pZEBhbmRyb2lkLmNvbTAeFw0wODA0MTUyMzM2NTZaFw0zNTA5MDEyMzM2NTZaMIGUMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEQMA4GA1UEChMHQW5kcm9pZDEQMA4GA1UECxMHQW5kcm9pZDEQMA4GA1UEAxMHQW5kcm9pZDEiMCAGCSqGSIb3DQEJARYTYW5kcm9pZEBhbmRyb2lkLmNvbTCCASAwDQYJKoZIhvcNAQEBBQADggENADCCAQgCggEBANbOLggKv+IxTdGNs8/TGFy0PTP6DHThvbbR24kT9ixcOd9W+EaBPWW+wPPKQmsHxajtWjmQwWfna8mZuSeJS48LIgAZlKkpFeVyxW0qMBujb8X8ETrWy550NaFtI6t9+u7hZeTfHwqNvacKhp1RbE6dBRGWynwMVX8XW8N1+UjFaq6GCJukT4qmpN2afb8sCjUigq0GuMwYXrFVee74bQgLHWGJwPmvmLHC69EH6kWr22ijx4OKXlSIx2xT1AsSHee70w5iDBiK4aph27yH3TxkXy9V89TDdexAcKk/cVHYNnDBapcavl7y0RiQ4biu8ymM8Ga/nmzhRKya6G0cGw8CAQOjgfwwgfkwHQYDVR0OBBYEFI0cxb6VTEM8YYY6FbBMvAPyT+CyMIHJBgNVHSMEgcEwgb6AFI0cxb6VTEM8YYY6FbBMvAPyT+CyoYGapIGXMIGUMQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEQMA4GA1UEChMHQW5kcm9pZDEQMA4GA1UECxMHQW5kcm9pZDEQMA4GA1UEAxMHQW5kcm9pZDEiMCAGCSqGSIb3DQEJARYTYW5kcm9pZEBhbmRyb2lkLmNvbYIJANWFuGx90071MAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEEBQADggEBABnTDPEF+3iSP0wNfdIjIz1AlnrPzgAIHVvXxunW7SBrDhEglQZBbKJEk5kT0mtKoOD1JMrSu1xuTKEBahWRbqHsXclaXjoBADb0kkjVEJu/Lh5hgYZnOjvlba8Ld7HCKePCVePoTJBdI4fvugnL8TsgK05aIskyY0hKI9L8KfqfGTl1lzOv2KoWD0KWwtAWPoGChZxmQ+nBli+gwYMzM1vAkP+aayLe0a1EQimlOalO762r0GXO0ks+UeXde2Z4e+8S/pf7pITEI/tP+MxJTALw9QUWEv9lKTk+jkbqxbsh8nfBUapfKqYn0eidpwq2AzVp3juYl7//fKnaPhJD9gs=
10 |
11 |
12 |
13 | -
14 | MIIEQzCCAyugAwIBAgIJAMLgh0ZkSjCNMA0GCSqGSIb3DQEBBAUAMHQxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtHb29nbGUgSW5jLjEQMA4GA1UECxMHQW5kcm9pZDEQMA4GA1UEAxMHQW5kcm9pZDAeFw0wODA4MjEyMzEzMzRaFw0zNjAxMDcyMzEzMzRaMHQxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpDYWxpZm9ybmlhMRYwFAYDVQQHEw1Nb3VudGFpbiBWaWV3MRQwEgYDVQQKEwtHb29nbGUgSW5jLjEQMA4GA1UECxMHQW5kcm9pZDEQMA4GA1UEAxMHQW5kcm9pZDCCASAwDQYJKoZIhvcNAQEBBQADggENADCCAQgCggEBAKtWLgDYO6IIrgqWbxJOKdoR8qtW0I9Y4sypEwPpt1TTcvZApxsdyxMJZ2JORland2qSGT2y5b+3JKkedxiLDmpHpDsz2WCbdxgxRczfey5YZnTJ4VZbH0xqWVW/8lGmPav5xVwnIiJS6HXk+BVKZF+JcWjAsb/GEuq/eFdpuzSqeYTcfi6idkyugwfYwXFU1+5fZKUaRKYCwkkFQVfcAs1fXA5V+++FGfvjJ/CxURaSxaBvGdGDhfXE28LWuT9ozCl5xw4Yq5OGazvV24mZVSoOO0yZ31j7kYvtwYK6NeADwbSxDdJEqO4k//0zOHKrUiGYXtqw/A0LFFtqoZKFjnkCAQOjgdkwgdYwHQYDVR0OBBYEFMd9jMIhF1Ylmn/Tgt9r45jk14alMIGmBgNVHSMEgZ4wgZuAFMd9jMIhF1Ylmn/Tgt9r45jk14aloXikdjB0MQswCQYDVQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNTW91bnRhaW4gVmlldzEUMBIGA1UEChMLR29vZ2xlIEluYy4xEDAOBgNVBAsTB0FuZHJvaWQxEDAOBgNVBAMTB0FuZHJvaWSCCQDC4IdGZEowjTAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBAUAA4IBAQBt0lLO74UwLDYKqs6Tm8/yzKkEu116FmH4rkaymUIE0P9KaMftGlMexFlaYjzmB2OxZyl6euNXEsQH8gjwyxCUKRJNexBiGcCEyj6z+a1fuHHvkiaai+KL8W1EyNmgjmyy8AW7P+LLlkR+ho5zEHatRbM/YAnqGcFh5iZBqpknHf1SKMXFh4dd239FJ1jWYfbMDMy3NS5CTMQ2XFI1MvcyUTdZPErjQfTbQe3aDQsQcafEQPD+nqActifKZ0Np0IS9L9kR/wbNvyz6ENwPiTrjV2KRkEjH78ZMcUQXg0L3BYHJ3lc69Vs5Ddf9uUGGMYldX3WfMBEmh/9iFBDAaTCK
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/activity_forgot_password.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
17 |
18 |
26 |
31 |
32 |
40 |
41 |
47 |
48 |
51 |
52 |
60 |
61 |
62 |
63 |
66 |
74 |
75 |
78 |
85 |
86 |
87 |
88 |
89 |
--------------------------------------------------------------------------------
/fragment_home.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
14 |
20 |
21 |
26 |
32 |
37 |
38 |
44 |
50 |
55 |
56 |
57 |
58 |
65 |
71 |
76 |
77 |
78 |
82 |
83 |
87 |
88 |
89 |
90 |
--------------------------------------------------------------------------------
/activity_book_info.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
14 |
15 |
22 |
23 |
29 |
30 |
35 |
36 |
46 |
47 |
56 |
57 |
68 |
69 |
78 |
79 |
80 |
81 |
82 |
83 |
92 |
93 |
101 |
102 |
111 |
112 |
113 |
--------------------------------------------------------------------------------
/activity_contact_developer.xml:
--------------------------------------------------------------------------------
1 |
2 |
12 |
13 |
20 |
21 |
28 |
31 |
36 |
37 |
43 |
53 |
54 |
61 |
62 |
69 |
70 |
77 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
106 |
107 |
108 |
109 |
--------------------------------------------------------------------------------
/activity_customer_login.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
18 |
19 |
29 |
30 |
39 |
40 |
45 |
46 |
52 |
53 |
54 |
57 |
58 |
65 |
66 |
67 |
68 |
73 |
74 |
82 |
83 |
84 |
85 |
92 |
95 |
103 |
106 |
113 |
114 |
117 |
125 |
126 |
127 |
128 |
129 |
--------------------------------------------------------------------------------
/activity_view_order_customer.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
16 |
22 |
28 |
29 |
34 |
41 |
49 |
50 |
51 |
58 |
59 |
64 |
65 |
72 |
73 |
79 |
85 |
91 |
92 |
98 |
104 |
105 |
106 |
112 |
113 |
121 |
130 |
137 |
138 |
151 |
152 |
--------------------------------------------------------------------------------
/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | ##############################################################################
4 | ##
5 | ## Gradle start up script for UN*X
6 | ##
7 | ##############################################################################
8 |
9 | # Attempt to set APP_HOME
10 | # Resolve links: $0 may be a link
11 | PRG="$0"
12 | # Need this for relative symlinks.
13 | while [ -h "$PRG" ] ; do
14 | ls=`ls -ld "$PRG"`
15 | link=`expr "$ls" : '.*-> \(.*\)$'`
16 | if expr "$link" : '/.*' > /dev/null; then
17 | PRG="$link"
18 | else
19 | PRG=`dirname "$PRG"`"/$link"
20 | fi
21 | done
22 | SAVED="`pwd`"
23 | cd "`dirname \"$PRG\"`/" >/dev/null
24 | APP_HOME="`pwd -P`"
25 | cd "$SAVED" >/dev/null
26 |
27 | APP_NAME="Gradle"
28 | APP_BASE_NAME=`basename "$0"`
29 |
30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
31 | DEFAULT_JVM_OPTS=""
32 |
33 | # Use the maximum available, or set MAX_FD != -1 to use that value.
34 | MAX_FD="maximum"
35 |
36 | warn () {
37 | echo "$*"
38 | }
39 |
40 | die () {
41 | echo
42 | echo "$*"
43 | echo
44 | exit 1
45 | }
46 |
47 | # OS specific support (must be 'true' or 'false').
48 | cygwin=false
49 | msys=false
50 | darwin=false
51 | nonstop=false
52 | case "`uname`" in
53 | CYGWIN* )
54 | cygwin=true
55 | ;;
56 | Darwin* )
57 | darwin=true
58 | ;;
59 | MINGW* )
60 | msys=true
61 | ;;
62 | NONSTOP* )
63 | nonstop=true
64 | ;;
65 | esac
66 |
67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
68 |
69 | # Determine the Java command to use to start the JVM.
70 | if [ -n "$JAVA_HOME" ] ; then
71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
72 | # IBM's JDK on AIX uses strange locations for the executables
73 | JAVACMD="$JAVA_HOME/jre/sh/java"
74 | else
75 | JAVACMD="$JAVA_HOME/bin/java"
76 | fi
77 | if [ ! -x "$JAVACMD" ] ; then
78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
79 |
80 | Please set the JAVA_HOME variable in your environment to match the
81 | location of your Java installation."
82 | fi
83 | else
84 | JAVACMD="java"
85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
86 |
87 | Please set the JAVA_HOME variable in your environment to match the
88 | location of your Java installation."
89 | fi
90 |
91 | # Increase the maximum file descriptors if we can.
92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
93 | MAX_FD_LIMIT=`ulimit -H -n`
94 | if [ $? -eq 0 ] ; then
95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
96 | MAX_FD="$MAX_FD_LIMIT"
97 | fi
98 | ulimit -n $MAX_FD
99 | if [ $? -ne 0 ] ; then
100 | warn "Could not set maximum file descriptor limit: $MAX_FD"
101 | fi
102 | else
103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
104 | fi
105 | fi
106 |
107 | # For Darwin, add options to specify how the application appears in the dock
108 | if $darwin; then
109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
110 | fi
111 |
112 | # For Cygwin, switch paths to Windows format before running java
113 | if $cygwin ; then
114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
116 | JAVACMD=`cygpath --unix "$JAVACMD"`
117 |
118 | # We build the pattern for arguments to be converted via cygpath
119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
120 | SEP=""
121 | for dir in $ROOTDIRSRAW ; do
122 | ROOTDIRS="$ROOTDIRS$SEP$dir"
123 | SEP="|"
124 | done
125 | OURCYGPATTERN="(^($ROOTDIRS))"
126 | # Add a user-defined pattern to the cygpath arguments
127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
129 | fi
130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
131 | i=0
132 | for arg in "$@" ; do
133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
135 |
136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
138 | else
139 | eval `echo args$i`="\"$arg\""
140 | fi
141 | i=$((i+1))
142 | done
143 | case $i in
144 | (0) set -- ;;
145 | (1) set -- "$args0" ;;
146 | (2) set -- "$args0" "$args1" ;;
147 | (3) set -- "$args0" "$args1" "$args2" ;;
148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
154 | esac
155 | fi
156 |
157 | # Escape application args
158 | save () {
159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
160 | echo " "
161 | }
162 | APP_ARGS=$(save "$@")
163 |
164 | # Collect all arguments for the java command, following the shell quoting and substitution rules
165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
166 |
167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
169 | cd "$(dirname "$0")"
170 | fi
171 |
172 | exec "$JAVACMD" "$@"
173 |
--------------------------------------------------------------------------------
/activity_update_order.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
11 |
12 |
17 |
23 |
29 |
30 |
31 |
36 |
44 |
53 |
54 |
55 |
62 |
63 |
68 |
69 |
75 |
81 |
82 |
86 |
87 |
96 |
97 |
98 |
103 |
104 |
110 |
116 |
122 |
123 |
129 |
135 |
136 |
137 |
143 |
144 |
152 |
161 |
167 |
168 |
169 |
170 |
--------------------------------------------------------------------------------
/fragment_about.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
15 |
16 |
19 |
23 |
24 |
32 |
33 |
42 |
50 |
58 |
66 |
74 |
82 |
91 |
92 |
101 |
109 |
118 |
127 |
128 |
137 |
138 |
147 |
157 |
158 |
159 |
160 |
--------------------------------------------------------------------------------
/activity_profile_customer.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
19 |
20 |
29 |
30 |
39 |
40 |
41 |
44 |
45 |
58 |
59 |
62 |
63 |
76 |
77 |
80 |
81 |
96 |
97 |
100 |
101 |
111 |
112 |
126 |
127 |
130 |
131 |
146 |
147 |
158 |
159 |
162 |
170 |
171 |
172 |
173 |
--------------------------------------------------------------------------------
/activity_create_account_customer.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
20 |
21 |
30 |
31 |
40 |
41 |
44 |
45 |
59 |
60 |
63 |
64 |
76 |
77 |
80 |
81 |
94 |
95 |
98 |
99 |
112 |
113 |
116 |
117 |
132 |
133 |
136 |
137 |
147 |
148 |
162 |
163 |
166 |
167 |
182 |
183 |
186 |
194 |
195 |
--------------------------------------------------------------------------------
/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | BookCave
3 | Welcome to BookCave
4 |
5 | Log In
6 | Log Out
7 | Email
8 | Password
9 | Forget Password?
10 | Join us for business as Seller
11 |
12 | Already have account?Log in.
13 | Reset Password
14 | Receive link in email
15 |
16 | Create New Account
17 | Create New Seller Account
18 | Create Account
19 | Owner\'s First Name
20 | Owner\'s Last Name
21 | First Name
22 | Last Name
23 | Phone no
24 | Owner\'s phone no
25 | For order:
26 | Owner info:
27 | Shop name
28 | GST number
29 | Company info:
30 | Address
31 | Pincode
32 |
33 | HomeCustomer
34 | Home
35 | Search
36 | Profile
37 |
38 | My name
39 | My Profile
40 | Favourites
41 | My Cart
42 | Order History
43 | Payment History
44 | Help
45 | Contact Developer
46 | About our app
47 | design purpose
48 |
49 | Tell me your problem
50 | Severity of problem
51 | Details about problem you are facing:
52 | Send mail
53 | HomeSeller
54 | Open navigation drawer
55 | Close navigation drawer
56 | Android Studio
57 | Successfully signed in
58 | Navigation header
59 | Settings
60 |
61 | Home
62 | Gallery
63 | Slideshow
64 | Add Books
65 | Remove Books
66 |
67 | Home Second
68 | Books List
69 | Update Order status
70 | My information
71 | My profile
72 | Others
73 | Settings
74 | Report problem/Contact us
75 | About our app
76 | Payment history
77 | All orders
78 | User
79 | Search Book to add
80 |
81 | Please check your Internet Connection
82 | No matching results
83 |
84 | App serves the purpose to be a medium between small book shop in city of pune and customers.Due to covid, Shops are closed because of which it is hard to make living for small shop owners and slo for customers to buy.
85 | This app will give opportunity to them to make living for small shop owner.
86 | Also will give booknerds the books they want at home.
87 |
88 |
89 | Update details
90 | Verify your email*
91 | Update and Save changes
92 | Add book to selling list
93 | Quantities available at your shop
94 | Your selling price
95 | Renting price
96 | Delivery charges
97 |
98 | Search Books by name,author
99 |
100 | Buy Book
101 | Rent Book
102 | Read Book preview
103 | Continue
104 | Place Order
105 | You will have to pay the money and other document(if required) on delivery. You can pay in cash or UPI, card or any other online mode too.
106 | Enter new address
107 | Order Summary
108 | Change Address for this order
109 | Book Image
110 | Author Name
111 | Genre
112 | Price details
113 | Price(1 item)
114 | Delivery charges
115 | Total amount
116 | Payment details
117 | Cash on delivery
118 | Final amount to pay
119 | Use this Address for this order
120 | Go to Home
121 | Order placed!
122 | (Click on address to change address and pincode for this order)
123 | Orders recevied
124 | Profit earned*
125 | Potential profit
126 | Give the below secret OTP to delivery boy to authenticate and securely deliver the order.
127 | Select the number of days for renting:
128 | Verification documents necessary
129 | Any valid identity proof like Aadhar card, PAN card, License card, voting card would be considered.
130 | Any valid identity proof like Electricity bill, Rent agreement, Aadhar card would be considered.
131 | Update/view details
132 | Received
133 | to be received
134 | Order rejected
135 |
136 |
137 |
--------------------------------------------------------------------------------
/activity_book_info_order.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
13 |
14 |
17 |
18 |
22 |
23 |
30 |
31 |
37 |
38 |
43 |
44 |
54 |
55 |
64 |
65 |
77 |
78 |
87 |
88 |
89 |
90 |
91 |
92 |
102 |
103 |
111 |
112 |
122 |
123 |
130 |
137 |
138 |
145 |
152 |
153 |
163 |
164 |
165 |
166 |
167 |
173 |
174 |
186 |
187 |
199 |
200 |
201 |
--------------------------------------------------------------------------------
/fragment_seller_profile.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
18 |
19 |
22 |
23 |
33 |
34 |
47 |
48 |
51 |
52 |
65 |
66 |
69 |
70 |
85 |
86 |
89 |
90 |
100 |
101 |
114 |
115 |
118 |
119 |
133 |
134 |
137 |
138 |
152 |
153 |
156 |
157 |
172 |
173 |
176 |
177 |
192 |
193 |
196 |
197 |
208 |
209 |
212 |
220 |
221 |
222 |
223 |
--------------------------------------------------------------------------------
/fragment_profile.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
16 |
17 |
27 |
28 |
37 |
38 |
42 |
48 |
49 |
55 |
56 |
62 |
63 |
71 |
72 |
73 |
78 |
79 |
85 |
86 |
92 |
93 |
101 |
102 |
103 |
108 |
109 |
115 |
116 |
122 |
123 |
131 |
132 |
133 |
138 |
139 |
145 |
146 |
152 |
160 |
161 |
162 |
167 |
168 |
174 |
175 |
181 |
189 |
190 |
191 |
196 |
197 |
203 |
204 |
210 |
219 |
220 |
221 |
227 |
228 |
229 |
238 |
239 |
240 |
241 |
242 |
--------------------------------------------------------------------------------
/activity_add_book.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
16 |
20 |
26 |
30 |
31 |
37 |
38 |
48 |
49 |
50 |
51 |
54 |
55 |
65 |
66 |
82 |
83 |
94 |
95 |
111 |
112 |
119 |
120 |
128 |
129 |
132 |
133 |
141 |
142 |
143 |
144 |
148 |
149 |
163 |
164 |
178 |
179 |
180 |
186 |
187 |
198 |
199 |
200 |
201 |
202 |
203 |
214 |
215 |
216 |
217 |
--------------------------------------------------------------------------------
/activity_creat_account_seller.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
19 |
20 |
29 |
30 |
33 |
34 |
48 |
49 |
52 |
53 |
65 |
66 |
69 |
70 |
80 |
81 |
94 |
95 |
98 |
99 |
112 |
113 |
116 |
117 |
132 |
133 |
136 |
137 |
147 |
148 |
161 |
162 |
165 |
166 |
179 |
180 |
183 |
184 |
198 |
199 |
202 |
203 |
218 |
219 |
222 |
223 |
238 |
239 |
242 |
243 |
251 |
252 |
253 |
--------------------------------------------------------------------------------
/activity_buy_book.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
13 |
14 |
17 |
18 |
22 |
23 |
32 |
33 |
41 |
42 |
50 |
51 |
59 |
60 |
66 |
67 |
74 |
75 |
81 |
82 |
83 |
89 |
90 |
96 |
97 |
101 |
108 |
113 |
118 |
119 |
125 |
126 |
127 |
128 |
129 |
135 |
136 |
146 |
147 |
150 |
151 |
159 |
160 |
170 |
171 |
172 |
173 |
176 |
177 |
185 |
186 |
196 |
197 |
198 |
199 |
203 |
204 |
212 |
213 |
223 |
224 |
225 |
226 |
227 |
228 |
234 |
235 |
245 |
246 |
257 |
258 |
271 |
272 |
273 |
274 |
275 |
276 |
277 |
284 |
285 |
295 |
308 |
309 |
323 |
324 |
325 |
326 |
327 |
--------------------------------------------------------------------------------