├── .idea ├── .name ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── vcs.xml ├── modules.xml ├── runConfigurations.xml ├── compiler.xml ├── gradle.xml └── misc.xml ├── app ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── xml │ │ │ │ └── filepaths.xml │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── styles.xml │ │ │ │ ├── library_strings.xml │ │ │ │ └── strings.xml │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ ├── drawable │ │ │ │ ├── ic_close_24dp.xml │ │ │ │ ├── ic_open_in_new_24dp.xml │ │ │ │ ├── ic_settings_backup_restore_24dp.xml │ │ │ │ ├── ic_help_outline_24dp.xml │ │ │ │ └── ic_settings_24dp.xml │ │ │ ├── layout │ │ │ │ ├── item_image.xml │ │ │ │ ├── fragment_single_text.xml │ │ │ │ ├── fragment_dialog_picker.xml │ │ │ │ ├── activity_result.xml │ │ │ │ ├── activity_about.xml │ │ │ │ └── activity_main.xml │ │ │ └── menu │ │ │ │ ├── menu_result.xml │ │ │ │ └── menu_main.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── pddstudio │ │ │ │ └── orlyandroid │ │ │ │ ├── enums │ │ │ │ ├── Type.java │ │ │ │ └── UrlType.java │ │ │ │ ├── utils │ │ │ │ ├── GenerationUtils.java │ │ │ │ ├── NetworkUtils.java │ │ │ │ ├── BuilderUtil.java │ │ │ │ └── StorageManager.java │ │ │ │ ├── AboutActivity.java │ │ │ │ ├── fragments │ │ │ │ ├── ColorPickerFragment.java │ │ │ │ ├── CoverImagePickerFragment.java │ │ │ │ └── SingleTextFragment.java │ │ │ │ ├── adapters │ │ │ │ └── CoverImageAdapter.java │ │ │ │ ├── ResultActivity.java │ │ │ │ └── MainActivity.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── pddstudio │ │ │ └── orlyandroid │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── pddstudio │ │ └── orlyandroid │ │ └── ApplicationTest.java ├── proguard-rules.pro └── build.gradle ├── o-rly-generator ├── .gitignore ├── src │ ├── main │ │ ├── assets │ │ │ └── images │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── 3.png │ │ │ │ ├── 30.png │ │ │ │ ├── 31.png │ │ │ │ ├── 32.png │ │ │ │ ├── 33.png │ │ │ │ ├── 34.png │ │ │ │ ├── 35.png │ │ │ │ ├── 36.png │ │ │ │ ├── 37.png │ │ │ │ ├── 38.png │ │ │ │ ├── 39.png │ │ │ │ ├── 4.png │ │ │ │ ├── 40.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── pddstudio │ │ │ │ └── orly │ │ │ │ └── book │ │ │ │ └── generator │ │ │ │ ├── enums │ │ │ │ ├── GuideTextPosition.java │ │ │ │ ├── CoverImage.java │ │ │ │ └── CoverColor.java │ │ │ │ ├── BookGenerator.java │ │ │ │ ├── Book.java │ │ │ │ └── utils │ │ │ │ └── BookUtils.java │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── pddstudio │ │ │ └── orly │ │ │ └── book │ │ │ └── generator │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── pddstudio │ │ └── orly │ │ └── book │ │ └── generator │ │ └── ApplicationTest.java ├── proguard-rules.pro └── build.gradle ├── settings.gradle ├── gfx └── preview.png ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore ├── .travis.yml ├── gradle.properties ├── gradlew.bat ├── README.md └── gradlew /.idea/.name: -------------------------------------------------------------------------------- 1 | O-Rly-Android -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /o-rly-generator/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':o-rly-generator' 2 | -------------------------------------------------------------------------------- /gfx/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/gfx/preview.png -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/1.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/10.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/11.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/12.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/13.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/14.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/15.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/16.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/17.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/18.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/19.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/2.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/20.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/21.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/22.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/23.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/24.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/25.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/26.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/27.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/28.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/29.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/3.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/30.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/31.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/32.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/33.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/34.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/35.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/36.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/37.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/38.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/39.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/4.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/40.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/5.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/6.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/7.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/8.png -------------------------------------------------------------------------------- /o-rly-generator/src/main/assets/images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/o-rly-generator/src/main/assets/images/9.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PDDStudio/O-Rly-Android/master/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/xml/filepaths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Aug 16 09:11:04 CEST 2016 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip 7 | -------------------------------------------------------------------------------- /app/src/main/java/com/pddstudio/orlyandroid/enums/Type.java: -------------------------------------------------------------------------------- 1 | package com.pddstudio.orlyandroid.enums; 2 | 3 | import java.io.Serializable; 4 | 5 | /** 6 | * Created by pddstudio on 15/08/16. 7 | */ 8 | public enum Type implements Serializable { 9 | TOP_TITLE, 10 | AUTHOR, 11 | TITLE, 12 | GUIDE 13 | } 14 | -------------------------------------------------------------------------------- /o-rly-generator/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /app/src/test/java/com/pddstudio/orlyandroid/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.pddstudio.orlyandroid; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_close_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/layout/item_image.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /o-rly-generator/src/test/java/com/pddstudio/orly/book/generator/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.pddstudio.orly.book.generator; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /app/src/androidTest/java/com/pddstudio/orlyandroid/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.pddstudio.orlyandroid; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /o-rly-generator/src/androidTest/java/com/pddstudio/orly/book/generator/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.pddstudio.orly.book.generator; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_open_in_new_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /app/src/main/java/com/pddstudio/orlyandroid/enums/UrlType.java: -------------------------------------------------------------------------------- 1 | package com.pddstudio.orlyandroid.enums; 2 | 3 | import android.support.annotation.IntDef; 4 | 5 | import java.lang.annotation.Retention; 6 | import java.lang.annotation.RetentionPolicy; 7 | 8 | /** 9 | * Created by pddstudio on 16/08/16. 10 | */ 11 | @Retention(RetentionPolicy.SOURCE) 12 | @IntDef({UrlType.GITHUB, UrlType.GOOGLE_PLUS}) 13 | public @interface UrlType { 14 | public static final int GITHUB = 1; 15 | public static final int GOOGLE_PLUS = 2; 16 | } 17 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_settings_backup_restore_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_help_outline_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_result.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | 14 | 15 | 19 | 20 | -------------------------------------------------------------------------------- /o-rly-generator/src/main/java/com/pddstudio/orly/book/generator/enums/GuideTextPosition.java: -------------------------------------------------------------------------------- 1 | package com.pddstudio.orly.book.generator.enums; 2 | 3 | /** 4 | * Created by pddstudio on 15/08/16. 5 | */ 6 | public enum GuideTextPosition { 7 | BOTTOM_RIGHT("bottom_right"), 8 | BOTTOM_LEFT("bottom_left"), 9 | TOP_RIGHT("top_right"), 10 | TOP_LEFT("top_left"); 11 | 12 | private final String positionName; 13 | 14 | GuideTextPosition(String positionName) { 15 | this.positionName = positionName; 16 | } 17 | 18 | public String getPositionName() { 19 | return positionName; 20 | } 21 | 22 | public static GuideTextPosition DEFAULT = BOTTOM_RIGHT; 23 | 24 | } 25 | -------------------------------------------------------------------------------- /o-rly-generator/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/pddstudio/Library/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/pddstudio/Library/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -keep class .R 19 | -keep class **.R$* { 20 | ; 21 | } -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_single_text.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 15 | 16 | 21 | 22 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_dialog_picker.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 15 | 16 |