├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── libraries │ ├── appcompat_v7_22_0_0.xml │ ├── butterknife_6_1_0.xml │ ├── cardview_v7_22_0_0.xml │ ├── circleimageview_1_2_2.xml │ ├── davinci_1_0_2.xml │ ├── davincidaemon_1_0_2.xml │ ├── disklrucache_2_0_2.xml │ ├── emmet_1_0_1.xml │ ├── fab_1_3_0.xml │ ├── gson_2_3_1.xml │ ├── kenburnsview_1_0_6.xml │ ├── picasso_2_5_2.xml │ ├── play_services_base_6_5_87.xml │ ├── play_services_wearable_6_5_87.xml │ ├── recyclerview_v7_21_0_0.xml │ ├── recyclerview_v7_22_0_0.xml │ ├── retrofit_1_9_0.xml │ ├── support_annotations_21_0_0.xml │ ├── support_annotations_22_0_0.xml │ ├── support_v4_21_0_0.xml │ ├── support_v4_22_0_0.xml │ └── wearable_1_1_0.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml ├── vcs.xml └── workspace.xml ├── .travis.yml ├── Potier.iml ├── README.md ├── Xebia.iml ├── app-release.apk ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── keyInfos.properties ├── libs │ └── circualreveal-release.aar ├── potier.jks ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── florent37 │ │ └── xebia │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── Roboto-Black.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Thin.ttf │ └── harry.ttf │ ├── java │ └── com │ │ └── github │ │ └── florent37 │ │ └── xebia │ │ ├── cart │ │ ├── Cart.java │ │ ├── CartBookFacade.java │ │ └── CartBookFacadeSharedPreferences.java │ │ ├── detail │ │ ├── BookFragment.java │ │ └── DetailActivity.java │ │ ├── home │ │ ├── BookListFragment.java │ │ ├── MainActivity.java │ │ ├── parallax │ │ │ ├── ParallaxHeaderActivity.java │ │ │ └── ParallaxHelper.java │ │ ├── recyclerview │ │ │ ├── BookAdapter.java │ │ │ └── BookViewHolder.java │ │ └── task │ │ │ └── GetBooksTask.java │ │ ├── model │ │ ├── Book.java │ │ ├── CommercialOffer.java │ │ ├── Offer.java │ │ └── OfferContainer.java │ │ ├── pay │ │ ├── PayActivity.java │ │ ├── PayFragment.java │ │ ├── recyclerview │ │ │ ├── BookCommandAdapter.java │ │ │ ├── BookCommandViewHolder.java │ │ │ └── PayHeaderViewHolder.java │ │ └── task │ │ │ └── GetCommercialOffersTask.java │ │ ├── ui │ │ └── view │ │ │ ├── MaskableFrameLayout.java │ │ │ ├── SquareImageView.java │ │ │ └── TypefacedTextView.java │ │ ├── utils │ │ └── Utils.java │ │ ├── wear │ │ └── WearService.java │ │ └── webservice │ │ ├── HenriPotierService.java │ │ └── HenriPotierWebService.java │ └── res │ ├── color │ └── selector_button.xml │ ├── drawable-hdpi │ ├── coins.png │ ├── ic_add_white_24dp.png │ ├── ic_remove_white_24dp.png │ └── shopping.png │ ├── drawable-nodpi │ ├── florent.jpg │ ├── harry.jpg │ ├── hp0.jpg │ ├── material_background.png │ ├── shopping.png │ ├── sky.jpg │ └── sky_2.jpg │ ├── drawable-xhdpi │ ├── ic_add_white_24dp.png │ ├── ic_remove_white_24dp.png │ └── shopping.png │ ├── drawable-xxhdpi │ ├── ic_add_white_24dp.png │ ├── ic_book_black_48dp.png │ ├── ic_remove_white_24dp.png │ ├── ic_settings_grey600_48dp.png │ ├── ic_shopping_cart_black_48dp.png │ └── shopping.png │ ├── drawable │ ├── circle_fab.xml │ ├── gradient_black_vertical.xml │ ├── masking_masking_01.png │ └── selector_light.xml │ ├── layout │ ├── activity_detail.xml │ ├── activity_main.xml │ ├── activity_pay.xml │ ├── cell_book.xml │ ├── cell_command_book.xml │ ├── drawer.xml │ ├── fragment_book.xml │ ├── fragment_books.xml │ ├── fragment_pay.xml │ ├── pay_fragment_header.xml │ └── recyclerview_placeholder.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values-fr │ └── strings.xml │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── attrs.xml │ ├── attrs_maskable_framelayout.xml │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshots ├── command.png ├── command_small.png ├── detail.png ├── detail_small.png ├── home1.png ├── home1_small.png ├── home2.png ├── home2_small.png ├── logo.psd ├── wear1.png ├── wear1_small.png ├── wear2.png └── wear2_small.png ├── settings.gradle ├── wearable ├── .gitignore ├── build.gradle ├── keyInfos.properties ├── potier.jks ├── proguard-rules.pro ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── florent37 │ │ │ └── xebia │ │ │ ├── BookFragment.java │ │ │ ├── BookGridPagerAdapter.java │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable │ │ └── gradient_black_vertical.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ └── fragment_book.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── strings.xml └── wearable.iml └── wearprotocol ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── src ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── florent37 │ │ └── xebia │ │ └── wearprotocol │ │ └── ApplicationTest.java └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── github │ └── florent37 │ └── xebia │ └── wearprotocol │ ├── WearBook.java │ ├── WearProtocol.java │ └── WearProtocolSmartphone.java └── wearprotocol.iml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Potier -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/libraries/appcompat_v7_22_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/appcompat_v7_22_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/butterknife_6_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/butterknife_6_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/cardview_v7_22_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/cardview_v7_22_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/circleimageview_1_2_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/circleimageview_1_2_2.xml -------------------------------------------------------------------------------- /.idea/libraries/davinci_1_0_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/davinci_1_0_2.xml -------------------------------------------------------------------------------- /.idea/libraries/davincidaemon_1_0_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/davincidaemon_1_0_2.xml -------------------------------------------------------------------------------- /.idea/libraries/disklrucache_2_0_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/disklrucache_2_0_2.xml -------------------------------------------------------------------------------- /.idea/libraries/emmet_1_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/emmet_1_0_1.xml -------------------------------------------------------------------------------- /.idea/libraries/fab_1_3_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/fab_1_3_0.xml -------------------------------------------------------------------------------- /.idea/libraries/gson_2_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/gson_2_3_1.xml -------------------------------------------------------------------------------- /.idea/libraries/kenburnsview_1_0_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/kenburnsview_1_0_6.xml -------------------------------------------------------------------------------- /.idea/libraries/picasso_2_5_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/picasso_2_5_2.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_base_6_5_87.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/play_services_base_6_5_87.xml -------------------------------------------------------------------------------- /.idea/libraries/play_services_wearable_6_5_87.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/play_services_wearable_6_5_87.xml -------------------------------------------------------------------------------- /.idea/libraries/recyclerview_v7_21_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/recyclerview_v7_21_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/recyclerview_v7_22_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/recyclerview_v7_22_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/retrofit_1_9_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/retrofit_1_9_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_annotations_21_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/support_annotations_21_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_annotations_22_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/support_annotations_22_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_v4_21_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/support_v4_21_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_v4_22_0_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/support_v4_22_0_0.xml -------------------------------------------------------------------------------- /.idea/libraries/wearable_1_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/libraries/wearable_1_1_0.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/.travis.yml -------------------------------------------------------------------------------- /Potier.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/Potier.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/README.md -------------------------------------------------------------------------------- /Xebia.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/Xebia.iml -------------------------------------------------------------------------------- /app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app-release.apk -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/keyInfos.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/keyInfos.properties -------------------------------------------------------------------------------- /app/libs/circualreveal-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/libs/circualreveal-release.aar -------------------------------------------------------------------------------- /app/potier.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/potier.jks -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/github/florent37/xebia/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/androidTest/java/com/github/florent37/xebia/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/assets/Roboto-Black.ttf -------------------------------------------------------------------------------- /app/src/main/assets/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/assets/Roboto-Bold.ttf -------------------------------------------------------------------------------- /app/src/main/assets/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/assets/Roboto-Light.ttf -------------------------------------------------------------------------------- /app/src/main/assets/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/assets/Roboto-Medium.ttf -------------------------------------------------------------------------------- /app/src/main/assets/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/assets/Roboto-Regular.ttf -------------------------------------------------------------------------------- /app/src/main/assets/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/assets/Roboto-Thin.ttf -------------------------------------------------------------------------------- /app/src/main/assets/harry.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/assets/harry.ttf -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/cart/Cart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/cart/Cart.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/cart/CartBookFacade.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/cart/CartBookFacade.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/cart/CartBookFacadeSharedPreferences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/cart/CartBookFacadeSharedPreferences.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/detail/BookFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/detail/BookFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/detail/DetailActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/detail/DetailActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/home/BookListFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/home/BookListFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/home/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/home/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/home/parallax/ParallaxHeaderActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/home/parallax/ParallaxHeaderActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/home/parallax/ParallaxHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/home/parallax/ParallaxHelper.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/home/recyclerview/BookAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/home/recyclerview/BookAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/home/recyclerview/BookViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/home/recyclerview/BookViewHolder.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/home/task/GetBooksTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/home/task/GetBooksTask.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/model/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/model/Book.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/model/CommercialOffer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/model/CommercialOffer.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/model/Offer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/model/Offer.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/model/OfferContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/model/OfferContainer.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/pay/PayActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/pay/PayActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/pay/PayFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/pay/PayFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/pay/recyclerview/BookCommandAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/pay/recyclerview/BookCommandAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/pay/recyclerview/BookCommandViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/pay/recyclerview/BookCommandViewHolder.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/pay/recyclerview/PayHeaderViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/pay/recyclerview/PayHeaderViewHolder.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/pay/task/GetCommercialOffersTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/pay/task/GetCommercialOffersTask.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/ui/view/MaskableFrameLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/ui/view/MaskableFrameLayout.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/ui/view/SquareImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/ui/view/SquareImageView.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/ui/view/TypefacedTextView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/ui/view/TypefacedTextView.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/utils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/utils/Utils.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/wear/WearService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/wear/WearService.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/webservice/HenriPotierService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/webservice/HenriPotierService.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/xebia/webservice/HenriPotierWebService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/java/com/github/florent37/xebia/webservice/HenriPotierWebService.java -------------------------------------------------------------------------------- /app/src/main/res/color/selector_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/color/selector_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable-hdpi/coins.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_add_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable-hdpi/ic_add_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_remove_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable-hdpi/ic_remove_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/shopping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable-hdpi/shopping.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/florent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable-nodpi/florent.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/harry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable-nodpi/harry.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/hp0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable-nodpi/hp0.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/material_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable-nodpi/material_background.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/shopping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable-nodpi/shopping.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/sky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable-nodpi/sky.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/sky_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable-nodpi/sky_2.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_add_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable-xhdpi/ic_add_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_remove_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable-xhdpi/ic_remove_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/shopping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable-xhdpi/shopping.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_add_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable-xxhdpi/ic_add_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_book_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable-xxhdpi/ic_book_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_remove_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable-xxhdpi/ic_remove_white_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_settings_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable-xxhdpi/ic_settings_grey600_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_shopping_cart_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable-xxhdpi/ic_shopping_cart_black_48dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/shopping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable-xxhdpi/shopping.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle_fab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable/circle_fab.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/gradient_black_vertical.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable/gradient_black_vertical.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/masking_masking_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable/masking_masking_01.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/drawable/selector_light.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/layout/activity_detail.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_pay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/layout/activity_pay.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/cell_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/layout/cell_book.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/cell_command_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/layout/cell_command_book.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/layout/drawer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/layout/fragment_book.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_books.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/layout/fragment_books.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_pay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/layout/fragment_pay.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/pay_fragment_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/layout/pay_fragment_header.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/recyclerview_placeholder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/layout/recyclerview_placeholder.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs_maskable_framelayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/values/attrs_maskable_framelayout.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/gradlew.bat -------------------------------------------------------------------------------- /screenshots/command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/screenshots/command.png -------------------------------------------------------------------------------- /screenshots/command_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/screenshots/command_small.png -------------------------------------------------------------------------------- /screenshots/detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/screenshots/detail.png -------------------------------------------------------------------------------- /screenshots/detail_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/screenshots/detail_small.png -------------------------------------------------------------------------------- /screenshots/home1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/screenshots/home1.png -------------------------------------------------------------------------------- /screenshots/home1_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/screenshots/home1_small.png -------------------------------------------------------------------------------- /screenshots/home2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/screenshots/home2.png -------------------------------------------------------------------------------- /screenshots/home2_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/screenshots/home2_small.png -------------------------------------------------------------------------------- /screenshots/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/screenshots/logo.psd -------------------------------------------------------------------------------- /screenshots/wear1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/screenshots/wear1.png -------------------------------------------------------------------------------- /screenshots/wear1_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/screenshots/wear1_small.png -------------------------------------------------------------------------------- /screenshots/wear2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/screenshots/wear2.png -------------------------------------------------------------------------------- /screenshots/wear2_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/screenshots/wear2_small.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/settings.gradle -------------------------------------------------------------------------------- /wearable/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /wearable/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearable/build.gradle -------------------------------------------------------------------------------- /wearable/keyInfos.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearable/keyInfos.properties -------------------------------------------------------------------------------- /wearable/potier.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearable/potier.jks -------------------------------------------------------------------------------- /wearable/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearable/proguard-rules.pro -------------------------------------------------------------------------------- /wearable/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearable/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /wearable/src/main/java/com/github/florent37/xebia/BookFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearable/src/main/java/com/github/florent37/xebia/BookFragment.java -------------------------------------------------------------------------------- /wearable/src/main/java/com/github/florent37/xebia/BookGridPagerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearable/src/main/java/com/github/florent37/xebia/BookGridPagerAdapter.java -------------------------------------------------------------------------------- /wearable/src/main/java/com/github/florent37/xebia/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearable/src/main/java/com/github/florent37/xebia/MainActivity.java -------------------------------------------------------------------------------- /wearable/src/main/res/drawable/gradient_black_vertical.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearable/src/main/res/drawable/gradient_black_vertical.xml -------------------------------------------------------------------------------- /wearable/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearable/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /wearable/src/main/res/layout/fragment_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearable/src/main/res/layout/fragment_book.xml -------------------------------------------------------------------------------- /wearable/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearable/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /wearable/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearable/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /wearable/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearable/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wearable/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearable/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wearable/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearable/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /wearable/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearable/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /wearable/wearable.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearable/wearable.iml -------------------------------------------------------------------------------- /wearprotocol/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /wearprotocol/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearprotocol/build.gradle -------------------------------------------------------------------------------- /wearprotocol/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearprotocol/proguard-rules.pro -------------------------------------------------------------------------------- /wearprotocol/src/androidTest/java/com/github/florent37/xebia/wearprotocol/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearprotocol/src/androidTest/java/com/github/florent37/xebia/wearprotocol/ApplicationTest.java -------------------------------------------------------------------------------- /wearprotocol/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearprotocol/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /wearprotocol/src/main/java/com/github/florent37/xebia/wearprotocol/WearBook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearprotocol/src/main/java/com/github/florent37/xebia/wearprotocol/WearBook.java -------------------------------------------------------------------------------- /wearprotocol/src/main/java/com/github/florent37/xebia/wearprotocol/WearProtocol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearprotocol/src/main/java/com/github/florent37/xebia/wearprotocol/WearProtocol.java -------------------------------------------------------------------------------- /wearprotocol/src/main/java/com/github/florent37/xebia/wearprotocol/WearProtocolSmartphone.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearprotocol/src/main/java/com/github/florent37/xebia/wearprotocol/WearProtocolSmartphone.java -------------------------------------------------------------------------------- /wearprotocol/wearprotocol.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/Potier/HEAD/wearprotocol/wearprotocol.iml --------------------------------------------------------------------------------