├── app ├── .gitignore ├── src │ ├── main │ │ ├── ic_launcher-web.png │ │ ├── res │ │ │ ├── drawable │ │ │ │ ├── by.png │ │ │ │ ├── blue1.png │ │ │ │ ├── book.png │ │ │ │ ├── game.png │ │ │ │ ├── space.png │ │ │ │ ├── about2.png │ │ │ │ ├── anime3.png │ │ │ │ ├── bwroad.png │ │ │ │ ├── marvel.png │ │ │ │ ├── walpmage.png │ │ │ │ ├── abouticon3.png │ │ │ │ ├── abstract1.png │ │ │ │ ├── backmage2.png │ │ │ │ ├── backorange.png │ │ │ │ ├── bluemount.png │ │ │ │ ├── feedback1.png │ │ │ │ ├── instaheart.png │ │ │ │ ├── piracysimp.gif │ │ │ │ ├── whitelane.png │ │ │ │ ├── feedbackicon.png │ │ │ │ ├── miniopendoor.png │ │ │ │ ├── mountaingreen.png │ │ │ │ ├── homebackground.png │ │ │ │ ├── orangeblackbuilding.png │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── styles.xml │ │ │ │ └── colors.xml │ │ │ ├── drawable-v24 │ │ │ │ ├── icon.png │ │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_round.png │ │ │ │ └── ic_launcher_foreground.png │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ └── layout │ │ │ │ ├── activity_read_web_view.xml │ │ │ │ ├── activity_about_info.xml │ │ │ │ ├── activity_web_view.xml │ │ │ │ ├── activity_applications.xml │ │ │ │ ├── activity_streaming_sites.xml │ │ │ │ ├── activity_torrent.xml │ │ │ │ ├── activity_tor_search.xml │ │ │ │ ├── activity_mod_apps.xml │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_comic_manga.xml │ │ │ │ ├── activity_streaming_apps.xml │ │ │ │ ├── activity_eabook.xml │ │ │ │ ├── activity_tutorials.xml │ │ │ │ └── activity_torrent_sites.xml │ │ ├── java │ │ │ └── academy │ │ │ │ └── ltreitk │ │ │ │ └── piracyorb │ │ │ │ ├── AboutInfo.java │ │ │ │ ├── Applications.java │ │ │ │ ├── WebView.java │ │ │ │ ├── ReadWebView.java │ │ │ │ ├── Torrent.java │ │ │ │ ├── StreamingSites.java │ │ │ │ ├── ModApps.java │ │ │ │ ├── TorSearch.java │ │ │ │ ├── ComicManga.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── EABook.java │ │ │ │ ├── StreamingApps.java │ │ │ │ ├── Tutorials.java │ │ │ │ ├── Reading.java │ │ │ │ ├── AnimeSites.java │ │ │ │ ├── TorrentSites.java │ │ │ │ └── MovieTvSites.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── academy │ │ │ └── ltreitk │ │ │ └── piracyorb │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── academy │ │ └── ltreitk │ │ └── piracyorb │ │ └── ExampleInstrumentedTest.java ├── proguard-rules.pro └── build.gradle ├── settings.gradle ├── Orb1.jpg ├── Orb2.jpg ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore ├── .idea ├── misc.xml ├── runConfigurations.xml ├── gradle.xml └── codeStyles │ └── Project.xml ├── main ├── gradle.properties ├── gradlew.bat └── gradlew /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Orb1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/Orb1.jpg -------------------------------------------------------------------------------- /Orb2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/Orb2.jpg -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/by.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/res/drawable/blue1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/blue1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/book.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/game.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/space.png -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Piracy Orb 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable-v24/icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/about2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/about2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/anime3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/anime3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/bwroad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/bwroad.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/marvel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/marvel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/walpmage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/walpmage.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/abouticon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/abouticon3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/abstract1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/abstract1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/backmage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/backmage2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/backorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/backorange.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/bluemount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/bluemount.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/feedback1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/feedback1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/instaheart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/instaheart.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/piracysimp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/piracysimp.gif -------------------------------------------------------------------------------- /app/src/main/res/drawable/whitelane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/whitelane.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/feedbackicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/feedbackicon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/miniopendoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/miniopendoor.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/mountaingreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/mountaingreen.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/homebackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/homebackground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/orangeblackbuilding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/drawable/orangeblackbuilding.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ri-tik/PiracyOrb/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sat Jul 27 00:41:09 IST 2019 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-4.10.1-all.zip 7 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /main: -------------------------------------------------------------------------------- 1 | # PiracyOrb 2 | Static Android Application which Lists out all famous piracy websites and presents it in a web view format. 3 |
4 | Website List Reference: https://github.com/Igglybuff/awesome-piracy 5 |
6 | Screenshots: 7 |
8 | Script Snap 9 |
10 | Script Snap 11 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/test/java/academy/ltreitk/piracyorb/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package academy.ltreitk.piracyorb; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_read_web_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/java/academy/ltreitk/piracyorb/AboutInfo.java: -------------------------------------------------------------------------------- 1 | package academy.ltreitk.piracyorb; 2 | 3 | import androidx.appcompat.app.AppCompatActivity; 4 | 5 | import android.os.Bundle; 6 | 7 | import com.github.chrisbanes.photoview.PhotoView; 8 | 9 | public class AboutInfo extends AppCompatActivity { 10 | 11 | @Override 12 | protected void onCreate(Bundle savedInstanceState) { 13 | super.onCreate(savedInstanceState); 14 | setContentView(R.layout.activity_about_info); 15 | 16 | PhotoView photoView = (PhotoView) findViewById(R.id.photo_view); 17 | photoView.setImageResource(R.drawable.about2); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_about_info.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 17 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #008577 4 | #00574B 5 | #D62B69 6 | #00FFCE 7 | #5AC18E 8 | #da2c43 9 | #FF7373 10 | #FFFFFF 11 | #263238 12 | #FFFF00 13 | #00FFFF 14 | #008080 15 | #C0C0C0 16 | 17 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_web_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 17 | 18 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | # IDE (e.g. Android Studio) users: 3 | # Gradle settings configured through the IDE *will override* 4 | # any settings specified in this file. 5 | # For more details on how to configure your build environment visit 6 | # http://www.gradle.org/docs/current/userguide/build_environment.html 7 | # Specifies the JVM arguments used for the daemon process. 8 | # The setting is particularly useful for tweaking memory settings. 9 | org.gradle.jvmargs=-Xmx1536m 10 | # When configured, Gradle will run in incubating parallel mode. 11 | # This option should only be used with decoupled projects. More details, visit 12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 13 | # org.gradle.parallel=true 14 | android.useAndroidX=true 15 | android.enableJetifier=true 16 | 17 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | -------------------------------------------------------------------------------- /app/src/androidTest/java/academy/ltreitk/piracyorb/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package academy.ltreitk.piracyorb; 2 | 3 | import android.content.Context; 4 | import android.support.test.InstrumentationRegistry; 5 | import android.support.test.runner.AndroidJUnit4; 6 | 7 | import org.junit.Test; 8 | import org.junit.runner.RunWith; 9 | 10 | import static org.junit.Assert.*; 11 | 12 | /** 13 | * Instrumented test, which will execute on an Android device. 14 | * 15 | * @see Testing documentation 16 | */ 17 | @RunWith(AndroidJUnit4.class) 18 | public class ExampleInstrumentedTest { 19 | @Test 20 | public void useAppContext() { 21 | // Context of the app under test. 22 | Context appContext = InstrumentationRegistry.getTargetContext(); 23 | 24 | assertEquals("academy.ltreitk.piracyorb", appContext.getPackageName()); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 28 5 | defaultConfig { 6 | applicationId "academy.ltreitk.piracyorb" 7 | minSdkVersion 19 8 | targetSdkVersion 28 9 | versionCode 1 10 | versionName "1.0" 11 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 12 | } 13 | buildTypes { 14 | release { 15 | minifyEnabled false 16 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 17 | } 18 | } 19 | } 20 | 21 | dependencies { 22 | implementation fileTree(dir: 'libs', include: ['*.jar']) 23 | implementation 'com.android.support:appcompat-v7:28.0.0' 24 | implementation 'com.android.support.constraint:constraint-layout:1.1.3' 25 | implementation 'androidx.appcompat:appcompat:1.0.0-beta01' 26 | implementation 'androidx.constraintlayout:constraintlayout:1.1.2' 27 | testImplementation 'junit:junit:4.12' 28 | androidTestImplementation 'com.android.support.test:runner:1.0.2' 29 | androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' 30 | implementation 'com.android.support:recyclerview-v7:28.0.0' 31 | implementation 'com.github.chrisbanes:PhotoView:2.3.0' 32 | 33 | implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.17' 34 | } 35 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_applications.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 |