├── .gitignore ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── bullhead │ │ └── quranverse │ │ └── demo │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── bullhead │ │ │ └── quranverse │ │ │ └── demo │ │ │ └── MainActivity.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── bullhead │ └── quranverse │ └── demo │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── quranquotes ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── fonts │ │ └── Garamond.ttf │ ├── juz.json │ ├── sahih_bukhari.json │ ├── surah.json │ ├── surah │ │ ├── .sources │ │ ├── surah_1.json │ │ ├── surah_10.json │ │ ├── surah_100.json │ │ ├── surah_101.json │ │ ├── surah_102.json │ │ ├── surah_103.json │ │ ├── surah_104.json │ │ ├── surah_105.json │ │ ├── surah_106.json │ │ ├── surah_107.json │ │ ├── surah_108.json │ │ ├── surah_109.json │ │ ├── surah_11.json │ │ ├── surah_110.json │ │ ├── surah_111.json │ │ ├── surah_112.json │ │ ├── surah_113.json │ │ ├── surah_114.json │ │ ├── surah_12.json │ │ ├── surah_13.json │ │ ├── surah_14.json │ │ ├── surah_15.json │ │ ├── surah_16.json │ │ ├── surah_17.json │ │ ├── surah_18.json │ │ ├── surah_19.json │ │ ├── surah_2.json │ │ ├── surah_20.json │ │ ├── surah_21.json │ │ ├── surah_22.json │ │ ├── surah_23.json │ │ ├── surah_24.json │ │ ├── surah_25.json │ │ ├── surah_26.json │ │ ├── surah_27.json │ │ ├── surah_28.json │ │ ├── surah_29.json │ │ ├── surah_3.json │ │ ├── surah_30.json │ │ ├── surah_31.json │ │ ├── surah_32.json │ │ ├── surah_33.json │ │ ├── surah_34.json │ │ ├── surah_35.json │ │ ├── surah_36.json │ │ ├── surah_37.json │ │ ├── surah_38.json │ │ ├── surah_39.json │ │ ├── surah_4.json │ │ ├── surah_40.json │ │ ├── surah_41.json │ │ ├── surah_42.json │ │ ├── surah_43.json │ │ ├── surah_44.json │ │ ├── surah_45.json │ │ ├── surah_46.json │ │ ├── surah_47.json │ │ ├── surah_48.json │ │ ├── surah_49.json │ │ ├── surah_5.json │ │ ├── surah_50.json │ │ ├── surah_51.json │ │ ├── surah_52.json │ │ ├── surah_53.json │ │ ├── surah_54.json │ │ ├── surah_55.json │ │ ├── surah_56.json │ │ ├── surah_57.json │ │ ├── surah_58.json │ │ ├── surah_59.json │ │ ├── surah_6.json │ │ ├── surah_60.json │ │ ├── surah_61.json │ │ ├── surah_62.json │ │ ├── surah_63.json │ │ ├── surah_64.json │ │ ├── surah_65.json │ │ ├── surah_66.json │ │ ├── surah_67.json │ │ ├── surah_68.json │ │ ├── surah_69.json │ │ ├── surah_7.json │ │ ├── surah_70.json │ │ ├── surah_71.json │ │ ├── surah_72.json │ │ ├── surah_73.json │ │ ├── surah_74.json │ │ ├── surah_75.json │ │ ├── surah_76.json │ │ ├── surah_77.json │ │ ├── surah_78.json │ │ ├── surah_79.json │ │ ├── surah_8.json │ │ ├── surah_80.json │ │ ├── surah_81.json │ │ ├── surah_82.json │ │ ├── surah_83.json │ │ ├── surah_84.json │ │ ├── surah_85.json │ │ ├── surah_86.json │ │ ├── surah_87.json │ │ ├── surah_88.json │ │ ├── surah_89.json │ │ ├── surah_9.json │ │ ├── surah_90.json │ │ ├── surah_91.json │ │ ├── surah_92.json │ │ ├── surah_93.json │ │ ├── surah_94.json │ │ ├── surah_95.json │ │ ├── surah_96.json │ │ ├── surah_97.json │ │ ├── surah_98.json │ │ └── surah_99.json │ └── translation │ │ └── en │ │ ├── .sources │ │ ├── en_translation_1.json │ │ ├── en_translation_10.json │ │ ├── en_translation_100.json │ │ ├── en_translation_101.json │ │ ├── en_translation_102.json │ │ ├── en_translation_103.json │ │ ├── en_translation_104.json │ │ ├── en_translation_105.json │ │ ├── en_translation_106.json │ │ ├── en_translation_107.json │ │ ├── en_translation_108.json │ │ ├── en_translation_109.json │ │ ├── en_translation_11.json │ │ ├── en_translation_110.json │ │ ├── en_translation_111.json │ │ ├── en_translation_112.json │ │ ├── en_translation_113.json │ │ ├── en_translation_114.json │ │ ├── en_translation_12.json │ │ ├── en_translation_13.json │ │ ├── en_translation_14.json │ │ ├── en_translation_15.json │ │ ├── en_translation_16.json │ │ ├── en_translation_17.json │ │ ├── en_translation_18.json │ │ ├── en_translation_19.json │ │ ├── en_translation_2.json │ │ ├── en_translation_20.json │ │ ├── en_translation_21.json │ │ ├── en_translation_22.json │ │ ├── en_translation_23.json │ │ ├── en_translation_24.json │ │ ├── en_translation_25.json │ │ ├── en_translation_26.json │ │ ├── en_translation_27.json │ │ ├── en_translation_28.json │ │ ├── en_translation_29.json │ │ ├── en_translation_3.json │ │ ├── en_translation_30.json │ │ ├── en_translation_31.json │ │ ├── en_translation_32.json │ │ ├── en_translation_33.json │ │ ├── en_translation_34.json │ │ ├── en_translation_35.json │ │ ├── en_translation_36.json │ │ ├── en_translation_37.json │ │ ├── en_translation_38.json │ │ ├── en_translation_39.json │ │ ├── en_translation_4.json │ │ ├── en_translation_40.json │ │ ├── en_translation_41.json │ │ ├── en_translation_42.json │ │ ├── en_translation_43.json │ │ ├── en_translation_44.json │ │ ├── en_translation_45.json │ │ ├── en_translation_46.json │ │ ├── en_translation_47.json │ │ ├── en_translation_48.json │ │ ├── en_translation_49.json │ │ ├── en_translation_5.json │ │ ├── en_translation_50.json │ │ ├── en_translation_51.json │ │ ├── en_translation_52.json │ │ ├── en_translation_53.json │ │ ├── en_translation_54.json │ │ ├── en_translation_55.json │ │ ├── en_translation_56.json │ │ ├── en_translation_57.json │ │ ├── en_translation_58.json │ │ ├── en_translation_59.json │ │ ├── en_translation_6.json │ │ ├── en_translation_60.json │ │ ├── en_translation_61.json │ │ ├── en_translation_62.json │ │ ├── en_translation_63.json │ │ ├── en_translation_64.json │ │ ├── en_translation_65.json │ │ ├── en_translation_66.json │ │ ├── en_translation_67.json │ │ ├── en_translation_68.json │ │ ├── en_translation_69.json │ │ ├── en_translation_7.json │ │ ├── en_translation_70.json │ │ ├── en_translation_71.json │ │ ├── en_translation_72.json │ │ ├── en_translation_73.json │ │ ├── en_translation_74.json │ │ ├── en_translation_75.json │ │ ├── en_translation_76.json │ │ ├── en_translation_77.json │ │ ├── en_translation_78.json │ │ ├── en_translation_79.json │ │ ├── en_translation_8.json │ │ ├── en_translation_80.json │ │ ├── en_translation_81.json │ │ ├── en_translation_82.json │ │ ├── en_translation_83.json │ │ ├── en_translation_84.json │ │ ├── en_translation_85.json │ │ ├── en_translation_86.json │ │ ├── en_translation_87.json │ │ ├── en_translation_88.json │ │ ├── en_translation_89.json │ │ ├── en_translation_9.json │ │ ├── en_translation_90.json │ │ ├── en_translation_91.json │ │ ├── en_translation_92.json │ │ ├── en_translation_93.json │ │ ├── en_translation_94.json │ │ ├── en_translation_95.json │ │ ├── en_translation_96.json │ │ ├── en_translation_97.json │ │ ├── en_translation_98.json │ │ └── en_translation_99.json │ ├── java │ └── com │ │ └── bullhead │ │ └── quranquotes │ │ ├── HadithQuote.java │ │ ├── QuranQuote.java │ │ ├── builders │ │ ├── SurahBuilder.java │ │ └── VerseBuilder.java │ │ ├── domain │ │ ├── Surah.java │ │ ├── SurahType.java │ │ ├── Verse.java │ │ └── hadith │ │ │ ├── Book.java │ │ │ ├── Hadith.java │ │ │ └── Volume.java │ │ └── views │ │ ├── GaramondTextView.java │ │ ├── HadithOfDayView.java │ │ ├── HadithView.java │ │ ├── QuranVerseView.java │ │ └── RandomHadithView.java │ └── res │ ├── layout │ └── quran_verse_view.xml │ ├── values-ar │ └── strings.xml │ └── values │ ├── attrs.xml │ ├── strings.xml │ └── style.xml ├── screens ├── arabic.png ├── english.png └── hadith.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/bullhead/quranverse/demo/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/androidTest/java/com/bullhead/quranverse/demo/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/bullhead/quranverse/demo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/main/java/com/bullhead/quranverse/demo/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/bullhead/quranverse/demo/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/app/src/test/java/com/bullhead/quranverse/demo/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/gradlew.bat -------------------------------------------------------------------------------- /quranquotes/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | *.iml -------------------------------------------------------------------------------- /quranquotes/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/build.gradle -------------------------------------------------------------------------------- /quranquotes/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/proguard-rules.pro -------------------------------------------------------------------------------- /quranquotes/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /quranquotes/src/main/assets/fonts/Garamond.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/fonts/Garamond.ttf -------------------------------------------------------------------------------- /quranquotes/src/main/assets/juz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/juz.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/sahih_bukhari.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/sahih_bukhari.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/.sources: -------------------------------------------------------------------------------- 1 | http://quranindex.info -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_1.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_10.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_100.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_101.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_102.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_103.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_103.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_104.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_104.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_105.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_105.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_106.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_106.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_107.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_107.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_108.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_108.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_109.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_109.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_11.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_110.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_111.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_112.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_112.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_113.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_113.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_114.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_12.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_13.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_14.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_15.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_16.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_17.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_18.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_19.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_2.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_20.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_21.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_22.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_23.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_24.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_25.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_26.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_27.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_28.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_29.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_3.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_30.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_31.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_32.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_33.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_34.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_35.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_36.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_37.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_38.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_39.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_4.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_40.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_41.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_42.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_43.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_44.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_45.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_46.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_46.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_47.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_48.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_49.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_49.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_5.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_50.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_51.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_51.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_52.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_53.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_54.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_55.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_55.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_56.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_57.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_57.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_58.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_58.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_59.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_59.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_6.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_60.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_60.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_61.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_62.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_62.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_63.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_63.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_64.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_65.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_65.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_66.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_66.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_67.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_67.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_68.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_68.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_69.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_69.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_7.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_70.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_70.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_71.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_71.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_72.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_72.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_73.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_73.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_74.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_74.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_75.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_75.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_76.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_76.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_77.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_77.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_78.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_78.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_79.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_79.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_8.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_80.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_80.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_81.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_81.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_82.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_82.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_83.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_83.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_84.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_84.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_85.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_85.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_86.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_87.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_87.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_88.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_88.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_89.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_89.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_9.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_90.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_90.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_91.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_91.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_92.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_92.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_93.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_93.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_94.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_94.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_95.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_95.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_96.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_96.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_97.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_97.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_98.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_98.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/surah/surah_99.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/surah/surah_99.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/.sources -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_1.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_10.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_100.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_101.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_102.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_103.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_103.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_104.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_104.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_105.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_105.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_106.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_106.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_107.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_107.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_108.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_108.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_109.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_109.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_11.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_110.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_111.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_112.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_112.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_113.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_113.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_114.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_12.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_13.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_14.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_15.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_16.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_17.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_18.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_19.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_2.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_20.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_21.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_22.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_23.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_24.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_25.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_26.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_27.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_28.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_29.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_3.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_30.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_31.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_32.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_33.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_34.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_35.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_36.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_37.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_38.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_39.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_4.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_40.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_41.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_42.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_43.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_44.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_45.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_46.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_46.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_47.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_48.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_49.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_49.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_5.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_50.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_51.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_51.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_52.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_53.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_54.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_55.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_55.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_56.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_57.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_57.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_58.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_58.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_59.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_59.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_6.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_60.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_60.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_61.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_62.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_62.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_63.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_63.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_64.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_65.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_65.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_66.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_66.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_67.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_67.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_68.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_68.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_69.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_69.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_7.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_70.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_70.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_71.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_71.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_72.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_72.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_73.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_73.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_74.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_74.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_75.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_75.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_76.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_76.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_77.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_77.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_78.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_78.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_79.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_79.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_8.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_80.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_80.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_81.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_81.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_82.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_82.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_83.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_83.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_84.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_84.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_85.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_85.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_86.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_87.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_87.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_88.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_88.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_89.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_89.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_9.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_90.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_90.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_91.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_91.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_92.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_92.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_93.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_93.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_94.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_94.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_95.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_95.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_96.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_96.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_97.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_97.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_98.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_98.json -------------------------------------------------------------------------------- /quranquotes/src/main/assets/translation/en/en_translation_99.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/assets/translation/en/en_translation_99.json -------------------------------------------------------------------------------- /quranquotes/src/main/java/com/bullhead/quranquotes/HadithQuote.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/java/com/bullhead/quranquotes/HadithQuote.java -------------------------------------------------------------------------------- /quranquotes/src/main/java/com/bullhead/quranquotes/QuranQuote.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/java/com/bullhead/quranquotes/QuranQuote.java -------------------------------------------------------------------------------- /quranquotes/src/main/java/com/bullhead/quranquotes/builders/SurahBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/java/com/bullhead/quranquotes/builders/SurahBuilder.java -------------------------------------------------------------------------------- /quranquotes/src/main/java/com/bullhead/quranquotes/builders/VerseBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/java/com/bullhead/quranquotes/builders/VerseBuilder.java -------------------------------------------------------------------------------- /quranquotes/src/main/java/com/bullhead/quranquotes/domain/Surah.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/java/com/bullhead/quranquotes/domain/Surah.java -------------------------------------------------------------------------------- /quranquotes/src/main/java/com/bullhead/quranquotes/domain/SurahType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/java/com/bullhead/quranquotes/domain/SurahType.java -------------------------------------------------------------------------------- /quranquotes/src/main/java/com/bullhead/quranquotes/domain/Verse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/java/com/bullhead/quranquotes/domain/Verse.java -------------------------------------------------------------------------------- /quranquotes/src/main/java/com/bullhead/quranquotes/domain/hadith/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/java/com/bullhead/quranquotes/domain/hadith/Book.java -------------------------------------------------------------------------------- /quranquotes/src/main/java/com/bullhead/quranquotes/domain/hadith/Hadith.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/java/com/bullhead/quranquotes/domain/hadith/Hadith.java -------------------------------------------------------------------------------- /quranquotes/src/main/java/com/bullhead/quranquotes/domain/hadith/Volume.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/java/com/bullhead/quranquotes/domain/hadith/Volume.java -------------------------------------------------------------------------------- /quranquotes/src/main/java/com/bullhead/quranquotes/views/GaramondTextView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/java/com/bullhead/quranquotes/views/GaramondTextView.java -------------------------------------------------------------------------------- /quranquotes/src/main/java/com/bullhead/quranquotes/views/HadithOfDayView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/java/com/bullhead/quranquotes/views/HadithOfDayView.java -------------------------------------------------------------------------------- /quranquotes/src/main/java/com/bullhead/quranquotes/views/HadithView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/java/com/bullhead/quranquotes/views/HadithView.java -------------------------------------------------------------------------------- /quranquotes/src/main/java/com/bullhead/quranquotes/views/QuranVerseView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/java/com/bullhead/quranquotes/views/QuranVerseView.java -------------------------------------------------------------------------------- /quranquotes/src/main/java/com/bullhead/quranquotes/views/RandomHadithView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/java/com/bullhead/quranquotes/views/RandomHadithView.java -------------------------------------------------------------------------------- /quranquotes/src/main/res/layout/quran_verse_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/res/layout/quran_verse_view.xml -------------------------------------------------------------------------------- /quranquotes/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /quranquotes/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /quranquotes/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /quranquotes/src/main/res/values/style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/quranquotes/src/main/res/values/style.xml -------------------------------------------------------------------------------- /screens/arabic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/screens/arabic.png -------------------------------------------------------------------------------- /screens/english.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/screens/english.png -------------------------------------------------------------------------------- /screens/hadith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bullheadandplato/quranVerses/HEAD/screens/hadith.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':quranquotes' 2 | --------------------------------------------------------------------------------