├── .gitignore ├── .idea ├── codeStyles │ └── Project.xml ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── .travis.yml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── amaze │ │ └── filepreloaderlibrary │ │ └── sampleapp │ │ ├── FolderMetadata.kt │ │ ├── MainActivity.kt │ │ └── Utils.kt │ └── 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 ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── lib ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── amaze │ │ └── filepreloaderlibrary │ │ ├── FilePreloader.kt │ │ ├── Loader.kt │ │ ├── PreloadedManager.kt │ │ ├── Processor.kt │ │ ├── SpecializedPreloader.kt │ │ ├── datastructures │ │ ├── DataContainer.kt │ │ ├── FetcherFunction.kt │ │ ├── PreloadableUnit.kt │ │ ├── PreloadedFolder.kt │ │ └── UniqueQueue.kt │ │ └── utils │ │ ├── Constants.kt │ │ ├── DebugLog.kt │ │ └── KFile.kt │ └── res │ └── values │ └── strings.xml ├── projectFilesBackup └── .idea │ └── workspace.xml ├── raw ├── logos │ ├── File Preloader Library.cdr │ ├── Logomark And Result │ │ ├── Logomark black.eps │ │ ├── Logomark black.pdf │ │ ├── Logomark black.png │ │ ├── Logomark black.svg │ │ ├── Logomark white.eps │ │ ├── Logomark white.pdf │ │ ├── Logomark white.png │ │ ├── Logomark white.svg │ │ ├── Logomark.eps │ │ ├── Logomark.pdf │ │ ├── Logomark.png │ │ └── Logomark.svg │ ├── Logotype Secondary vertikal │ │ ├── Logotype Secondary Vertical black.eps │ │ ├── Logotype Secondary Vertical black.pdf │ │ ├── Logotype Secondary Vertical black.png │ │ ├── Logotype Secondary Vertical black.svg │ │ ├── Logotype Secondary Vertical white.eps │ │ ├── Logotype Secondary Vertical white.pdf │ │ ├── Logotype Secondary Vertical white.png │ │ ├── Logotype Secondary Vertical white.svg │ │ ├── Logotype Secondary Vertical.eps │ │ ├── Logotype Secondary Vertical.pdf │ │ ├── Logotype Secondary Vertical.png │ │ └── Logotype Secondary Vertical.svg │ ├── Logotype primary horizantal │ │ ├── Logotype primary horizontal black.eps │ │ ├── Logotype primary horizontal black.pdf │ │ ├── Logotype primary horizontal black.png │ │ ├── Logotype primary horizontal black.svg │ │ ├── Logotype primary horizontal white.eps │ │ ├── Logotype primary horizontal white.pdf │ │ ├── Logotype primary horizontal white.png │ │ ├── Logotype primary horizontal white.svg │ │ ├── Logotype primary horizontal.eps │ │ ├── Logotype primary horizontal.pdf │ │ ├── Logotype primary horizontal.png │ │ └── Logotype primary horizontal.svg │ ├── Master │ │ ├── Logomark.eps │ │ ├── Logomark.pdf │ │ ├── Logomark.png │ │ ├── Logomark.svg │ │ ├── Master.ai │ │ └── Master.cdr │ └── Project │ │ ├── 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 └── traces │ └── cpu-art-20181209T213408.trace ├── settings.gradle └── static └── logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/amaze/filepreloaderlibrary/sampleapp/FolderMetadata.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/src/main/java/com/amaze/filepreloaderlibrary/sampleapp/FolderMetadata.kt -------------------------------------------------------------------------------- /app/src/main/java/com/amaze/filepreloaderlibrary/sampleapp/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/src/main/java/com/amaze/filepreloaderlibrary/sampleapp/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/amaze/filepreloaderlibrary/sampleapp/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/src/main/java/com/amaze/filepreloaderlibrary/sampleapp/Utils.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/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/TeamAmaze/FilePreloaderLibrary/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/TeamAmaze/FilePreloaderLibrary/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/gradlew.bat -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /lib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/lib/build.gradle -------------------------------------------------------------------------------- /lib/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/lib/proguard-rules.pro -------------------------------------------------------------------------------- /lib/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/lib/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /lib/src/main/java/com/amaze/filepreloaderlibrary/FilePreloader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/lib/src/main/java/com/amaze/filepreloaderlibrary/FilePreloader.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/amaze/filepreloaderlibrary/Loader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/lib/src/main/java/com/amaze/filepreloaderlibrary/Loader.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/amaze/filepreloaderlibrary/PreloadedManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/lib/src/main/java/com/amaze/filepreloaderlibrary/PreloadedManager.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/amaze/filepreloaderlibrary/Processor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/lib/src/main/java/com/amaze/filepreloaderlibrary/Processor.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/amaze/filepreloaderlibrary/SpecializedPreloader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/lib/src/main/java/com/amaze/filepreloaderlibrary/SpecializedPreloader.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/amaze/filepreloaderlibrary/datastructures/DataContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/lib/src/main/java/com/amaze/filepreloaderlibrary/datastructures/DataContainer.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/amaze/filepreloaderlibrary/datastructures/FetcherFunction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/lib/src/main/java/com/amaze/filepreloaderlibrary/datastructures/FetcherFunction.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/amaze/filepreloaderlibrary/datastructures/PreloadableUnit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/lib/src/main/java/com/amaze/filepreloaderlibrary/datastructures/PreloadableUnit.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/amaze/filepreloaderlibrary/datastructures/PreloadedFolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/lib/src/main/java/com/amaze/filepreloaderlibrary/datastructures/PreloadedFolder.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/amaze/filepreloaderlibrary/datastructures/UniqueQueue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/lib/src/main/java/com/amaze/filepreloaderlibrary/datastructures/UniqueQueue.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/amaze/filepreloaderlibrary/utils/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/lib/src/main/java/com/amaze/filepreloaderlibrary/utils/Constants.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/amaze/filepreloaderlibrary/utils/DebugLog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/lib/src/main/java/com/amaze/filepreloaderlibrary/utils/DebugLog.kt -------------------------------------------------------------------------------- /lib/src/main/java/com/amaze/filepreloaderlibrary/utils/KFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/lib/src/main/java/com/amaze/filepreloaderlibrary/utils/KFile.kt -------------------------------------------------------------------------------- /lib/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/lib/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /projectFilesBackup/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/projectFilesBackup/.idea/workspace.xml -------------------------------------------------------------------------------- /raw/logos/File Preloader Library.cdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/File Preloader Library.cdr -------------------------------------------------------------------------------- /raw/logos/Logomark And Result/Logomark black.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logomark And Result/Logomark black.eps -------------------------------------------------------------------------------- /raw/logos/Logomark And Result/Logomark black.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logomark And Result/Logomark black.pdf -------------------------------------------------------------------------------- /raw/logos/Logomark And Result/Logomark black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logomark And Result/Logomark black.png -------------------------------------------------------------------------------- /raw/logos/Logomark And Result/Logomark black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logomark And Result/Logomark black.svg -------------------------------------------------------------------------------- /raw/logos/Logomark And Result/Logomark white.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logomark And Result/Logomark white.eps -------------------------------------------------------------------------------- /raw/logos/Logomark And Result/Logomark white.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logomark And Result/Logomark white.pdf -------------------------------------------------------------------------------- /raw/logos/Logomark And Result/Logomark white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logomark And Result/Logomark white.png -------------------------------------------------------------------------------- /raw/logos/Logomark And Result/Logomark white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logomark And Result/Logomark white.svg -------------------------------------------------------------------------------- /raw/logos/Logomark And Result/Logomark.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logomark And Result/Logomark.eps -------------------------------------------------------------------------------- /raw/logos/Logomark And Result/Logomark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logomark And Result/Logomark.pdf -------------------------------------------------------------------------------- /raw/logos/Logomark And Result/Logomark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logomark And Result/Logomark.png -------------------------------------------------------------------------------- /raw/logos/Logomark And Result/Logomark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logomark And Result/Logomark.svg -------------------------------------------------------------------------------- /raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical black.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical black.eps -------------------------------------------------------------------------------- /raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical black.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical black.pdf -------------------------------------------------------------------------------- /raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical black.png -------------------------------------------------------------------------------- /raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical black.svg -------------------------------------------------------------------------------- /raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical white.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical white.eps -------------------------------------------------------------------------------- /raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical white.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical white.pdf -------------------------------------------------------------------------------- /raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical white.png -------------------------------------------------------------------------------- /raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical white.svg -------------------------------------------------------------------------------- /raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical.eps -------------------------------------------------------------------------------- /raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical.pdf -------------------------------------------------------------------------------- /raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical.png -------------------------------------------------------------------------------- /raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype Secondary vertikal/Logotype Secondary Vertical.svg -------------------------------------------------------------------------------- /raw/logos/Logotype primary horizantal/Logotype primary horizontal black.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype primary horizantal/Logotype primary horizontal black.eps -------------------------------------------------------------------------------- /raw/logos/Logotype primary horizantal/Logotype primary horizontal black.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype primary horizantal/Logotype primary horizontal black.pdf -------------------------------------------------------------------------------- /raw/logos/Logotype primary horizantal/Logotype primary horizontal black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype primary horizantal/Logotype primary horizontal black.png -------------------------------------------------------------------------------- /raw/logos/Logotype primary horizantal/Logotype primary horizontal black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype primary horizantal/Logotype primary horizontal black.svg -------------------------------------------------------------------------------- /raw/logos/Logotype primary horizantal/Logotype primary horizontal white.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype primary horizantal/Logotype primary horizontal white.eps -------------------------------------------------------------------------------- /raw/logos/Logotype primary horizantal/Logotype primary horizontal white.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype primary horizantal/Logotype primary horizontal white.pdf -------------------------------------------------------------------------------- /raw/logos/Logotype primary horizantal/Logotype primary horizontal white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype primary horizantal/Logotype primary horizontal white.png -------------------------------------------------------------------------------- /raw/logos/Logotype primary horizantal/Logotype primary horizontal white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype primary horizantal/Logotype primary horizontal white.svg -------------------------------------------------------------------------------- /raw/logos/Logotype primary horizantal/Logotype primary horizontal.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype primary horizantal/Logotype primary horizontal.eps -------------------------------------------------------------------------------- /raw/logos/Logotype primary horizantal/Logotype primary horizontal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype primary horizantal/Logotype primary horizontal.pdf -------------------------------------------------------------------------------- /raw/logos/Logotype primary horizantal/Logotype primary horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype primary horizantal/Logotype primary horizontal.png -------------------------------------------------------------------------------- /raw/logos/Logotype primary horizantal/Logotype primary horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Logotype primary horizantal/Logotype primary horizontal.svg -------------------------------------------------------------------------------- /raw/logos/Master/Logomark.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Master/Logomark.eps -------------------------------------------------------------------------------- /raw/logos/Master/Logomark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Master/Logomark.pdf -------------------------------------------------------------------------------- /raw/logos/Master/Logomark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Master/Logomark.png -------------------------------------------------------------------------------- /raw/logos/Master/Logomark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Master/Logomark.svg -------------------------------------------------------------------------------- /raw/logos/Master/Master.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Master/Master.ai -------------------------------------------------------------------------------- /raw/logos/Master/Master.cdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Master/Master.cdr -------------------------------------------------------------------------------- /raw/logos/Project/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Project/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /raw/logos/Project/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Project/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /raw/logos/Project/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Project/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /raw/logos/Project/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Project/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /raw/logos/Project/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Project/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /raw/logos/Project/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Project/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /raw/logos/Project/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Project/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /raw/logos/Project/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Project/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /raw/logos/Project/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Project/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /raw/logos/Project/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/logos/Project/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /raw/traces/cpu-art-20181209T213408.trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/raw/traces/cpu-art-20181209T213408.trace -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':lib' 2 | -------------------------------------------------------------------------------- /static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamAmaze/FilePreloaderLibrary/HEAD/static/logo.png --------------------------------------------------------------------------------