├── .gitignore ├── .idea ├── $CACHE_FILE$ ├── .gitignore ├── compiler.xml ├── gradle.xml ├── jarRepositories.xml ├── misc.xml └── sonarlint │ └── issuestore │ └── index.pb ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── plcoding │ │ └── supportallscreensizes │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── plcoding │ │ │ └── supportallscreensizes │ │ │ └── MainActivity.kt │ └── res │ │ ├── drawable-v24 │ │ ├── ic_launcher_foreground.xml │ │ ├── kermit1.jpg │ │ ├── kermit2.jpg │ │ ├── kermit3.jpg │ │ └── kermit4.jpg │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout-sw320dp │ │ └── activity_main.xml │ │ ├── layout-sw720dp-land │ │ └── activity_main.xml │ │ ├── layout-sw720dp │ │ └── activity_main.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-night │ │ └── themes.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── plcoding │ └── supportallscreensizes │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/$CACHE_FILE$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/.idea/$CACHE_FILE$ -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/sonarlint/issuestore/index.pb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/plcoding/supportallscreensizes/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/androidTest/java/com/plcoding/supportallscreensizes/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/plcoding/supportallscreensizes/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/java/com/plcoding/supportallscreensizes/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/kermit1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/drawable-v24/kermit1.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/kermit2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/drawable-v24/kermit2.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/kermit3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/drawable-v24/kermit3.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/kermit4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/drawable-v24/kermit4.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-sw320dp/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/layout-sw320dp/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-sw720dp-land/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/layout-sw720dp-land/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout-sw720dp/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/layout-sw720dp/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/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/philipplackner/SupportAllScreenSizes/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/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/test/java/com/plcoding/supportallscreensizes/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/app/src/test/java/com/plcoding/supportallscreensizes/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philipplackner/SupportAllScreenSizes/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "SupportAllScreenSizes" --------------------------------------------------------------------------------