├── .babelrc ├── .expo-shared ├── README.md └── assets.json ├── .gitignore ├── App.js ├── LICENSE ├── README.md ├── android ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── animelazer │ │ │ └── heroku │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── animelazer │ │ │ └── heroku │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ └── generated │ │ │ └── BasePackageList.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── splashscreen_image.png │ │ ├── drawable-mdpi │ │ └── splashscreen_image.png │ │ ├── drawable-xhdpi │ │ └── splashscreen_image.png │ │ ├── drawable-xxhdpi │ │ └── splashscreen_image.png │ │ ├── drawable-xxxhdpi │ │ └── splashscreen_image.png │ │ ├── drawable │ │ └── splashscreen.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── values-night │ │ └── colors.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── assets ├── Logo.png ├── Logo2.png ├── Screenshots │ ├── AL1.png │ ├── AL2.png │ ├── AL3.png │ ├── AL4.png │ ├── AL5.png │ ├── AL6.png │ ├── AL7.png │ ├── AL8.png │ └── AL9.png ├── adaptive-icon.png ├── assasination-classroom.jpg ├── cute-anime-dancing.gif ├── favicon.png ├── icon.png ├── mal.png └── splash.png ├── babel.config.js ├── components ├── Header.jsx └── index.js ├── index.js ├── metro.config.js ├── package.json ├── pages ├── Favorites.jsx ├── Home.jsx ├── Search.jsx ├── Settings.jsx └── index.js ├── rooms ├── EpisodeRoom.jsx ├── InfoRoom.jsx ├── WatchRoom.jsx └── index.js ├── screens ├── Complete.jsx ├── Dropped.jsx ├── OnHold.jsx ├── Plan.jsx ├── Watching.jsx └── index.js ├── src └── firebase.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/.babelrc -------------------------------------------------------------------------------- /.expo-shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/.expo-shared/README.md -------------------------------------------------------------------------------- /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/App.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/README.md -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/animelazer/heroku/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/debug/java/com/animelazer/heroku/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/animelazer/heroku/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/java/com/animelazer/heroku/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/animelazer/heroku/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/java/com/animelazer/heroku/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/animelazer/heroku/generated/BasePackageList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/java/com/animelazer/heroku/generated/BasePackageList.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/drawable-hdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/drawable-mdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/drawable-xhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/drawable-xxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/drawable-xxxhdpi/splashscreen_image.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/drawable/splashscreen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/app.json -------------------------------------------------------------------------------- /assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/assets/Logo.png -------------------------------------------------------------------------------- /assets/Logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/assets/Logo2.png -------------------------------------------------------------------------------- /assets/Screenshots/AL1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/assets/Screenshots/AL1.png -------------------------------------------------------------------------------- /assets/Screenshots/AL2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/assets/Screenshots/AL2.png -------------------------------------------------------------------------------- /assets/Screenshots/AL3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/assets/Screenshots/AL3.png -------------------------------------------------------------------------------- /assets/Screenshots/AL4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/assets/Screenshots/AL4.png -------------------------------------------------------------------------------- /assets/Screenshots/AL5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/assets/Screenshots/AL5.png -------------------------------------------------------------------------------- /assets/Screenshots/AL6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/assets/Screenshots/AL6.png -------------------------------------------------------------------------------- /assets/Screenshots/AL7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/assets/Screenshots/AL7.png -------------------------------------------------------------------------------- /assets/Screenshots/AL8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/assets/Screenshots/AL8.png -------------------------------------------------------------------------------- /assets/Screenshots/AL9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/assets/Screenshots/AL9.png -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/assasination-classroom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/assets/assasination-classroom.jpg -------------------------------------------------------------------------------- /assets/cute-anime-dancing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/assets/cute-anime-dancing.gif -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/mal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/assets/mal.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/components/Header.jsx -------------------------------------------------------------------------------- /components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/components/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/index.js -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/package.json -------------------------------------------------------------------------------- /pages/Favorites.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/pages/Favorites.jsx -------------------------------------------------------------------------------- /pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/pages/Home.jsx -------------------------------------------------------------------------------- /pages/Search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/pages/Search.jsx -------------------------------------------------------------------------------- /pages/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/pages/Settings.jsx -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/pages/index.js -------------------------------------------------------------------------------- /rooms/EpisodeRoom.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/rooms/EpisodeRoom.jsx -------------------------------------------------------------------------------- /rooms/InfoRoom.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/rooms/InfoRoom.jsx -------------------------------------------------------------------------------- /rooms/WatchRoom.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/rooms/WatchRoom.jsx -------------------------------------------------------------------------------- /rooms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/rooms/index.js -------------------------------------------------------------------------------- /screens/Complete.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/screens/Complete.jsx -------------------------------------------------------------------------------- /screens/Dropped.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/screens/Dropped.jsx -------------------------------------------------------------------------------- /screens/OnHold.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/screens/OnHold.jsx -------------------------------------------------------------------------------- /screens/Plan.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/screens/Plan.jsx -------------------------------------------------------------------------------- /screens/Watching.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/screens/Watching.jsx -------------------------------------------------------------------------------- /screens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/screens/index.js -------------------------------------------------------------------------------- /src/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/src/firebase.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prince-ao/AnimeLazerV3/HEAD/yarn.lock --------------------------------------------------------------------------------