├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 1_bug_report.yaml │ ├── 2_feature_request.yaml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── ci-reporter.yml ├── config.yml ├── lock.yml ├── no-response.yml ├── stale.yml ├── support.yml ├── triage.yml └── workflows │ └── build.yml ├── .gitignore ├── .idea ├── .gitignore └── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── LICENSE.md ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-android-optimize.txt ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── komponents │ │ ├── Nothing Weather Komponent - Colorful.komp │ │ ├── Nothing Weather Komponent - Dark.komp │ │ └── Nothing Weather Komponent - Lite.komp │ ├── ic_launcher-playstore.png │ ├── kotlin │ └── beehomie │ │ └── nothingweather │ │ └── komp │ │ ├── MainActivity.kt │ │ ├── MuzeiService.kt │ │ ├── MyApplication.kt │ │ ├── NotificationServiceExtension.kt │ │ └── ZooperProvider.kt │ └── res │ ├── drawable │ └── ic_launcher_background.xml │ ├── drawalbe-nodpi │ └── app_splash_screen_picture.png │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_background.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_background.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_background.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_background.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_background.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── values-v31 │ └── m3_colors.xml │ ├── values │ ├── about_setup.xml │ ├── colors.xml │ ├── dashboard_setup.xml │ ├── dimens.xml │ ├── floats.xml │ ├── frames_setup.xml │ ├── integers.xml │ ├── kuper_setup.xml │ ├── m3_shape_styles.xml │ ├── m3_styles.xml │ ├── shape_styles.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ ├── changelog.xml │ └── network_security_config.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1_bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/.github/ISSUE_TEMPLATE/1_bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2_feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/.github/ISSUE_TEMPLATE/2_feature_request.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ci-reporter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/.github/ci-reporter.yml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/.github/lock.yml -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/support.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/.github/support.yml -------------------------------------------------------------------------------- /.github/triage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/.github/triage.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-android-optimize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/proguard-android-optimize.txt -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/komponents/Nothing Weather Komponent - Colorful.komp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/assets/komponents/Nothing Weather Komponent - Colorful.komp -------------------------------------------------------------------------------- /app/src/main/assets/komponents/Nothing Weather Komponent - Dark.komp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/assets/komponents/Nothing Weather Komponent - Dark.komp -------------------------------------------------------------------------------- /app/src/main/assets/komponents/Nothing Weather Komponent - Lite.komp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/assets/komponents/Nothing Weather Komponent - Lite.komp -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/kotlin/beehomie/nothingweather/komp/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/kotlin/beehomie/nothingweather/komp/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/beehomie/nothingweather/komp/MuzeiService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/kotlin/beehomie/nothingweather/komp/MuzeiService.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/beehomie/nothingweather/komp/MyApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/kotlin/beehomie/nothingweather/komp/MyApplication.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/beehomie/nothingweather/komp/NotificationServiceExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/kotlin/beehomie/nothingweather/komp/NotificationServiceExtension.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/beehomie/nothingweather/komp/ZooperProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/kotlin/beehomie/nothingweather/komp/ZooperProvider.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawalbe-nodpi/app_splash_screen_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/drawalbe-nodpi/app_splash_screen_picture.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/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/bhaskar966/Nothing-Weather-KOMP/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/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-v31/m3_colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/values-v31/m3_colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/about_setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/values/about_setup.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dashboard_setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/values/dashboard_setup.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/floats.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/values/floats.xml -------------------------------------------------------------------------------- /app/src/main/res/values/frames_setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/values/frames_setup.xml -------------------------------------------------------------------------------- /app/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/values/integers.xml -------------------------------------------------------------------------------- /app/src/main/res/values/kuper_setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/values/kuper_setup.xml -------------------------------------------------------------------------------- /app/src/main/res/values/m3_shape_styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/values/m3_shape_styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/m3_styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/values/m3_styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/shape_styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/values/shape_styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/changelog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/xml/changelog.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhaskar966/Nothing-Weather-KOMP/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------