├── .gitignore ├── .idea ├── assetWizardSettings.xml ├── caches │ └── build_file_checksums.ser ├── codeStyles │ └── Project.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── smartherd │ │ └── msgshareapp │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher_shareapp-web.png │ ├── java │ │ └── com │ │ │ └── smartherd │ │ │ └── msgshareapp │ │ │ ├── AppConstants.kt │ │ │ ├── Extensions.kt │ │ │ ├── activities │ │ │ ├── HobbiesActivity.kt │ │ │ ├── MainActivity.kt │ │ │ └── SecondActivity.kt │ │ │ ├── adapters │ │ │ └── HobbiesAdapter.kt │ │ │ └── models │ │ │ └── Model.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_hobbies.xml │ │ ├── activity_main.xml │ │ ├── activity_second.xml │ │ └── list_item.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ ├── ic_launcher_round.xml │ │ ├── ic_launcher_shareapp.xml │ │ └── ic_launcher_shareapp_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_round.png │ │ ├── ic_launcher_shareapp.png │ │ └── ic_launcher_shareapp_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_round.png │ │ ├── ic_launcher_shareapp.png │ │ └── ic_launcher_shareapp_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_round.png │ │ ├── ic_launcher_shareapp.png │ │ └── ic_launcher_shareapp_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_round.png │ │ ├── ic_launcher_shareapp.png │ │ └── ic_launcher_shareapp_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_round.png │ │ ├── ic_launcher_shareapp.png │ │ └── ic_launcher_shareapp_round.png │ │ ├── values-fr │ │ └── strings.xml │ │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── smartherd │ └── msgshareapp │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/assetWizardSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/.idea/assetWizardSettings.xml -------------------------------------------------------------------------------- /.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/smartherd/msgshareapp/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/androidTest/java/com/smartherd/msgshareapp/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher_shareapp-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/ic_launcher_shareapp-web.png -------------------------------------------------------------------------------- /app/src/main/java/com/smartherd/msgshareapp/AppConstants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/java/com/smartherd/msgshareapp/AppConstants.kt -------------------------------------------------------------------------------- /app/src/main/java/com/smartherd/msgshareapp/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/java/com/smartherd/msgshareapp/Extensions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/smartherd/msgshareapp/activities/HobbiesActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/java/com/smartherd/msgshareapp/activities/HobbiesActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/smartherd/msgshareapp/activities/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/java/com/smartherd/msgshareapp/activities/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/smartherd/msgshareapp/activities/SecondActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/java/com/smartherd/msgshareapp/activities/SecondActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/smartherd/msgshareapp/adapters/HobbiesAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/java/com/smartherd/msgshareapp/adapters/HobbiesAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/smartherd/msgshareapp/models/Model.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/java/com/smartherd/msgshareapp/models/Model.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_hobbies.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/layout/activity_hobbies.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_second.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/layout/activity_second.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/layout/list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/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/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_shareapp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_shareapp.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_shareapp_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_shareapp_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/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/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_shareapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_shareapp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_shareapp_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_shareapp_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/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/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_shareapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_shareapp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_shareapp_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_shareapp_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/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/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_shareapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_shareapp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_shareapp_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_shareapp_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/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/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_shareapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_shareapp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_shareapp_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_shareapp_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/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/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_shareapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_shareapp.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_shareapp_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_shareapp_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/smartherd/msgshareapp/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/app/src/test/java/com/smartherd/msgshareapp/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smartherd/MsgShareApp/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------