├── .idea ├── .name ├── .gitignore ├── compiler.xml ├── kotlinc.xml ├── vcs.xml ├── migrations.xml ├── deploymentTargetSelector.xml ├── misc.xml └── gradle.xml ├── app ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── drawable │ │ │ │ ├── me.png │ │ │ │ ├── logo.png │ │ │ │ ├── nami.jpg │ │ │ │ ├── brook.jpg │ │ │ │ ├── chooper.jpg │ │ │ │ ├── franky.jpg │ │ │ │ ├── jinbei.jpg │ │ │ │ ├── luffy.jpg │ │ │ │ ├── robin.jpg │ │ │ │ ├── sanji.jpg │ │ │ │ ├── usopp.jpg │ │ │ │ ├── zorro.jpg │ │ │ │ ├── logo_bottom.png │ │ │ │ ├── light_banner.xml │ │ │ │ ├── account_circle.xml │ │ │ │ ├── share.xml │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── themes.xml │ │ │ │ └── strings.xml │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── menu │ │ │ │ └── menu_main.xml │ │ │ ├── xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── layout │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_splash.xml │ │ │ │ ├── activity_about.xml │ │ │ │ ├── item_row_pirate.xml │ │ │ │ └── activity_detail.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── myproject │ │ │ │ ├── Pirate.kt │ │ │ │ ├── SplashActivity.kt │ │ │ │ ├── AboutActivity.kt │ │ │ │ ├── ListPirateAdapter.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ └── DetailActivity.kt │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── myproject │ │ │ └── ExampleUnitTest.kt │ └── androidTest │ │ └── java │ │ └── com │ │ └── example │ │ └── myproject │ │ └── ExampleInstrumentedTest.kt ├── proguard-rules.pro └── build.gradle.kts ├── gradle ├── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties └── libs.versions.toml ├── .gitignore ├── README.md ├── settings.gradle.kts ├── gradle.properties ├── gradlew.bat └── gradlew /.idea/.name: -------------------------------------------------------------------------------- 1 | My Project -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/drawable/me.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/drawable/logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/nami.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/drawable/nami.jpg -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app/src/main/res/drawable/brook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/drawable/brook.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/chooper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/drawable/chooper.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/franky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/drawable/franky.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/jinbei.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/drawable/jinbei.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/luffy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/drawable/luffy.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/robin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/drawable/robin.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/sanji.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/drawable/sanji.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/usopp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/drawable/usopp.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/zorro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/drawable/zorro.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/logo_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/drawable/logo_bottom.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galangriarulhaq/Android-Beginners/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Sep 26 07:56:57 WIB 2024 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip 5 | zipStoreBase=GRADLE_USER_HOME 6 | zipStorePath=wrapper/dists 7 | -------------------------------------------------------------------------------- /.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 | .cxx 15 | local.properties 16 | -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/java/com/example/myproject/Pirate.kt: -------------------------------------------------------------------------------- 1 | package com.example.myproject 2 | 3 | import android.os.Parcelable 4 | import kotlinx.parcelize.Parcelize 5 | 6 | @Parcelize 7 | data class Pirate ( 8 | val name: String, 9 | val description: String, 10 | val photo: Int, 11 | val title: String 12 | ): Parcelable -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | #FFFFFFFF 5 | #FF808080 6 | #000080 7 | #001A44 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/light_banner.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Android-Beginners 2 | 3 | This repository for learn About Mobile Development at Bangkit Academy || course [Learn to Make Android Apps for Beginners](https://www.dicoding.com/academies/51) at [Dicoding](https://www.dicoding.com)
4 | [![Platform](https://img.shields.io/badge/platform-Android-green.svg)](http://developer.android.com/index.html) [![Kotlin](https://img.shields.io/badge/kotlin-1.9.22-blue.svg)](http://kotlinlang.org)
5 | -------------------------------------------------------------------------------- /app/src/test/java/com/example/myproject/ExampleUnitTest.kt: -------------------------------------------------------------------------------- 1 | package com.example.myproject 2 | 3 | import org.junit.Test 4 | 5 | import org.junit.Assert.* 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * See [testing documentation](http://d.android.com/tools/testing). 11 | */ 12 | class ExampleUnitTest { 13 | @Test 14 | fun addition_isCorrect() { 15 | assertEquals(4, 2 + 2) 16 | } 17 | } -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 |