├── .gitignore ├── README.md ├── androidApp ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── kotlin │ └── com │ │ └── adrianbukros │ │ └── github │ │ └── example │ │ ├── GitHubApplication.kt │ │ ├── GitHubRepoParc.kt │ │ ├── ListActivity.kt │ │ ├── MainActivity.kt │ │ └── RepoListAdapter.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ ├── activity_list.xml │ ├── activity_main.xml │ └── item_repo.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 ├── iosApp ├── .gitignore ├── Podfile ├── Podfile.lock ├── github-multiplatform-example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── github-multiplatform-example.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── github-multiplatform-example │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Info.plist │ └── Sources │ ├── AppDelegate.swift │ ├── LoginViewController.swift │ ├── RepoListViewController.swift │ └── UIColor+.swift ├── settings.gradle └── shared ├── build.gradle └── src ├── commonMain └── kotlin │ └── com │ └── adrianbukros │ └── github │ └── example │ ├── Api.kt │ ├── Base64Encoder.kt │ ├── DI.kt │ └── Logger.kt ├── iosMain └── kotlin │ └── com │ └── adrianbukros │ └── github │ └── example │ ├── Dispatcher.kt │ └── Logger.kt └── jvmMain └── kotlin └── com └── adrianbukros └── github └── example ├── Dispatcher.kt └── Logger.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/README.md -------------------------------------------------------------------------------- /androidApp/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /androidApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/build.gradle.kts -------------------------------------------------------------------------------- /androidApp/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/proguard-rules.pro -------------------------------------------------------------------------------- /androidApp/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /androidApp/src/main/kotlin/com/adrianbukros/github/example/GitHubApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/kotlin/com/adrianbukros/github/example/GitHubApplication.kt -------------------------------------------------------------------------------- /androidApp/src/main/kotlin/com/adrianbukros/github/example/GitHubRepoParc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/kotlin/com/adrianbukros/github/example/GitHubRepoParc.kt -------------------------------------------------------------------------------- /androidApp/src/main/kotlin/com/adrianbukros/github/example/ListActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/kotlin/com/adrianbukros/github/example/ListActivity.kt -------------------------------------------------------------------------------- /androidApp/src/main/kotlin/com/adrianbukros/github/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/kotlin/com/adrianbukros/github/example/MainActivity.kt -------------------------------------------------------------------------------- /androidApp/src/main/kotlin/com/adrianbukros/github/example/RepoListAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/kotlin/com/adrianbukros/github/example/RepoListAdapter.kt -------------------------------------------------------------------------------- /androidApp/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/layout/activity_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/res/layout/activity_list.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/layout/item_repo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/res/layout/item_repo.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /androidApp/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /androidApp/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/androidApp/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/gradlew.bat -------------------------------------------------------------------------------- /iosApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/iosApp/.gitignore -------------------------------------------------------------------------------- /iosApp/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/iosApp/Podfile -------------------------------------------------------------------------------- /iosApp/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/iosApp/Podfile.lock -------------------------------------------------------------------------------- /iosApp/github-multiplatform-example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/iosApp/github-multiplatform-example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iosApp/github-multiplatform-example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/iosApp/github-multiplatform-example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iosApp/github-multiplatform-example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/iosApp/github-multiplatform-example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /iosApp/github-multiplatform-example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/iosApp/github-multiplatform-example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iosApp/github-multiplatform-example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/iosApp/github-multiplatform-example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /iosApp/github-multiplatform-example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/iosApp/github-multiplatform-example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iosApp/github-multiplatform-example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/iosApp/github-multiplatform-example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iosApp/github-multiplatform-example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/iosApp/github-multiplatform-example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /iosApp/github-multiplatform-example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/iosApp/github-multiplatform-example/Info.plist -------------------------------------------------------------------------------- /iosApp/github-multiplatform-example/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/iosApp/github-multiplatform-example/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /iosApp/github-multiplatform-example/Sources/LoginViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/iosApp/github-multiplatform-example/Sources/LoginViewController.swift -------------------------------------------------------------------------------- /iosApp/github-multiplatform-example/Sources/RepoListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/iosApp/github-multiplatform-example/Sources/RepoListViewController.swift -------------------------------------------------------------------------------- /iosApp/github-multiplatform-example/Sources/UIColor+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/iosApp/github-multiplatform-example/Sources/UIColor+.swift -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/settings.gradle -------------------------------------------------------------------------------- /shared/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/shared/build.gradle -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/adrianbukros/github/example/Api.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/shared/src/commonMain/kotlin/com/adrianbukros/github/example/Api.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/adrianbukros/github/example/Base64Encoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/shared/src/commonMain/kotlin/com/adrianbukros/github/example/Base64Encoder.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/adrianbukros/github/example/DI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/shared/src/commonMain/kotlin/com/adrianbukros/github/example/DI.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/adrianbukros/github/example/Logger.kt: -------------------------------------------------------------------------------- 1 | package com.adrianbukros.github.example 2 | 3 | expect fun initTimber() 4 | -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/com/adrianbukros/github/example/Dispatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/shared/src/iosMain/kotlin/com/adrianbukros/github/example/Dispatcher.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/com/adrianbukros/github/example/Logger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/shared/src/iosMain/kotlin/com/adrianbukros/github/example/Logger.kt -------------------------------------------------------------------------------- /shared/src/jvmMain/kotlin/com/adrianbukros/github/example/Dispatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrianbukros/github-multiplatform-example/HEAD/shared/src/jvmMain/kotlin/com/adrianbukros/github/example/Dispatcher.kt -------------------------------------------------------------------------------- /shared/src/jvmMain/kotlin/com/adrianbukros/github/example/Logger.kt: -------------------------------------------------------------------------------- 1 | package com.adrianbukros.github.example 2 | 3 | actual fun initTimber() { 4 | } 5 | --------------------------------------------------------------------------------