├── .gitignore
├── LICENSE
├── README.md
├── app
├── .gitignore
├── build.gradle
├── proguard-rules.pro
└── src
│ ├── androidTest
│ └── java
│ │ └── p32929
│ │ └── officeaboutapp
│ │ └── ExampleInstrumentedTest.java
│ ├── main
│ ├── AndroidManifest.xml
│ ├── java
│ │ └── p32929
│ │ │ └── officeaboutapp
│ │ │ └── MainActivity.java
│ └── res
│ │ ├── drawable-v24
│ │ └── ic_launcher_foreground.xml
│ │ ├── drawable
│ │ └── ic_launcher_background.xml
│ │ ├── layout
│ │ └── activity_main.xml
│ │ ├── mipmap-anydpi-v26
│ │ ├── ic_launcher.xml
│ │ └── ic_launcher_round.xml
│ │ ├── mipmap-hdpi
│ │ ├── ic_launcher.png
│ │ └── ic_launcher_round.png
│ │ ├── mipmap-mdpi
│ │ ├── ic_launcher.png
│ │ └── ic_launcher_round.png
│ │ ├── mipmap-xhdpi
│ │ ├── ic_launcher.png
│ │ └── ic_launcher_round.png
│ │ ├── mipmap-xxhdpi
│ │ ├── ic_launcher.png
│ │ └── ic_launcher_round.png
│ │ ├── mipmap-xxxhdpi
│ │ ├── ic_launcher.png
│ │ └── ic_launcher_round.png
│ │ └── values
│ │ ├── colors.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ └── test
│ └── java
│ └── p32929
│ └── officeaboutapp
│ └── ExampleUnitTest.java
├── build.gradle
├── gradle.properties
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── officeaboutlib
├── .gitignore
├── build.gradle
├── proguard-rules.pro
└── src
│ ├── androidTest
│ └── java
│ │ └── p32929
│ │ └── officeaboutlib
│ │ └── ExampleInstrumentedTest.java
│ ├── main
│ ├── AndroidManifest.xml
│ ├── java
│ │ └── p32929
│ │ │ └── officeaboutlib
│ │ │ ├── Activities
│ │ │ └── OfficeAboutActivity.java
│ │ │ ├── Adapters
│ │ │ └── AboutRecyclerviewAdapter.java
│ │ │ ├── Models
│ │ │ ├── Member.java
│ │ │ └── OfficeInfo.java
│ │ │ └── Others
│ │ │ ├── GlobalMethods.java
│ │ │ ├── MembersListener.java
│ │ │ ├── OfficeAboutHelper.java
│ │ │ └── OfficeAboutLoader.java
│ └── res
│ │ ├── drawable-hdpi
│ │ ├── ic_account_group_black_18dp.png
│ │ ├── ic_account_group_black_24dp.png
│ │ ├── ic_account_group_black_36dp.png
│ │ ├── ic_account_group_black_48dp.png
│ │ ├── ic_account_group_grey600_18dp.png
│ │ ├── ic_account_group_grey600_24dp.png
│ │ ├── ic_account_group_grey600_36dp.png
│ │ ├── ic_account_group_grey600_48dp.png
│ │ ├── ic_account_group_white_18dp.png
│ │ ├── ic_account_group_white_24dp.png
│ │ ├── ic_account_group_white_36dp.png
│ │ ├── ic_account_group_white_48dp.png
│ │ ├── ic_face_profile_black_18dp.png
│ │ ├── ic_face_profile_black_24dp.png
│ │ ├── ic_face_profile_black_36dp.png
│ │ ├── ic_face_profile_black_48dp.png
│ │ ├── ic_face_profile_grey600_18dp.png
│ │ ├── ic_face_profile_grey600_24dp.png
│ │ ├── ic_face_profile_grey600_36dp.png
│ │ ├── ic_face_profile_grey600_48dp.png
│ │ ├── ic_face_profile_white_18dp.png
│ │ ├── ic_face_profile_white_24dp.png
│ │ ├── ic_face_profile_white_36dp.png
│ │ ├── ic_face_profile_white_48dp.png
│ │ ├── ic_facebook_black_18dp.png
│ │ ├── ic_facebook_black_24dp.png
│ │ ├── ic_facebook_black_36dp.png
│ │ ├── ic_facebook_black_48dp.png
│ │ ├── ic_facebook_grey600_18dp.png
│ │ ├── ic_facebook_grey600_24dp.png
│ │ ├── ic_facebook_grey600_36dp.png
│ │ ├── ic_facebook_grey600_48dp.png
│ │ ├── ic_facebook_white_18dp.png
│ │ ├── ic_facebook_white_24dp.png
│ │ ├── ic_facebook_white_36dp.png
│ │ ├── ic_facebook_white_48dp.png
│ │ ├── ic_github_circle_black_18dp.png
│ │ ├── ic_github_circle_black_24dp.png
│ │ ├── ic_github_circle_black_36dp.png
│ │ ├── ic_github_circle_black_48dp.png
│ │ ├── ic_github_circle_grey600_18dp.png
│ │ ├── ic_github_circle_grey600_24dp.png
│ │ ├── ic_github_circle_grey600_36dp.png
│ │ ├── ic_github_circle_grey600_48dp.png
│ │ ├── ic_github_circle_white_18dp.png
│ │ ├── ic_github_circle_white_24dp.png
│ │ ├── ic_github_circle_white_36dp.png
│ │ ├── ic_github_circle_white_48dp.png
│ │ ├── ic_google_play_black_18dp.png
│ │ ├── ic_google_play_black_24dp.png
│ │ ├── ic_google_play_black_36dp.png
│ │ ├── ic_google_play_black_48dp.png
│ │ ├── ic_google_play_grey600_18dp.png
│ │ ├── ic_google_play_grey600_24dp.png
│ │ ├── ic_google_play_grey600_36dp.png
│ │ ├── ic_google_play_grey600_48dp.png
│ │ ├── ic_google_play_white_18dp.png
│ │ ├── ic_google_play_white_24dp.png
│ │ ├── ic_google_play_white_36dp.png
│ │ ├── ic_google_play_white_48dp.png
│ │ ├── ic_web_black_18dp.png
│ │ ├── ic_web_black_24dp.png
│ │ ├── ic_web_black_36dp.png
│ │ ├── ic_web_black_48dp.png
│ │ ├── ic_web_grey600_18dp.png
│ │ ├── ic_web_grey600_24dp.png
│ │ ├── ic_web_grey600_36dp.png
│ │ ├── ic_web_grey600_48dp.png
│ │ ├── ic_web_white_18dp.png
│ │ ├── ic_web_white_24dp.png
│ │ ├── ic_web_white_36dp.png
│ │ ├── ic_web_white_48dp.png
│ │ ├── ic_youtube_black_18dp.png
│ │ ├── ic_youtube_black_24dp.png
│ │ ├── ic_youtube_black_36dp.png
│ │ ├── ic_youtube_black_48dp.png
│ │ ├── ic_youtube_grey600_18dp.png
│ │ ├── ic_youtube_grey600_24dp.png
│ │ ├── ic_youtube_grey600_36dp.png
│ │ ├── ic_youtube_grey600_48dp.png
│ │ ├── ic_youtube_white_18dp.png
│ │ ├── ic_youtube_white_24dp.png
│ │ ├── ic_youtube_white_36dp.png
│ │ └── ic_youtube_white_48dp.png
│ │ ├── drawable-mdpi
│ │ ├── ic_account_group_black_18dp.png
│ │ ├── ic_account_group_black_24dp.png
│ │ ├── ic_account_group_black_36dp.png
│ │ ├── ic_account_group_black_48dp.png
│ │ ├── ic_account_group_grey600_18dp.png
│ │ ├── ic_account_group_grey600_24dp.png
│ │ ├── ic_account_group_grey600_36dp.png
│ │ ├── ic_account_group_grey600_48dp.png
│ │ ├── ic_account_group_white_18dp.png
│ │ ├── ic_account_group_white_24dp.png
│ │ ├── ic_account_group_white_36dp.png
│ │ ├── ic_account_group_white_48dp.png
│ │ ├── ic_face_profile_black_18dp.png
│ │ ├── ic_face_profile_black_24dp.png
│ │ ├── ic_face_profile_black_36dp.png
│ │ ├── ic_face_profile_black_48dp.png
│ │ ├── ic_face_profile_grey600_18dp.png
│ │ ├── ic_face_profile_grey600_24dp.png
│ │ ├── ic_face_profile_grey600_36dp.png
│ │ ├── ic_face_profile_grey600_48dp.png
│ │ ├── ic_face_profile_white_18dp.png
│ │ ├── ic_face_profile_white_24dp.png
│ │ ├── ic_face_profile_white_36dp.png
│ │ ├── ic_face_profile_white_48dp.png
│ │ ├── ic_facebook_black_18dp.png
│ │ ├── ic_facebook_black_24dp.png
│ │ ├── ic_facebook_black_36dp.png
│ │ ├── ic_facebook_black_48dp.png
│ │ ├── ic_facebook_grey600_18dp.png
│ │ ├── ic_facebook_grey600_24dp.png
│ │ ├── ic_facebook_grey600_36dp.png
│ │ ├── ic_facebook_grey600_48dp.png
│ │ ├── ic_facebook_white_18dp.png
│ │ ├── ic_facebook_white_24dp.png
│ │ ├── ic_facebook_white_36dp.png
│ │ ├── ic_facebook_white_48dp.png
│ │ ├── ic_github_circle_black_18dp.png
│ │ ├── ic_github_circle_black_24dp.png
│ │ ├── ic_github_circle_black_36dp.png
│ │ ├── ic_github_circle_black_48dp.png
│ │ ├── ic_github_circle_grey600_18dp.png
│ │ ├── ic_github_circle_grey600_24dp.png
│ │ ├── ic_github_circle_grey600_36dp.png
│ │ ├── ic_github_circle_grey600_48dp.png
│ │ ├── ic_github_circle_white_18dp.png
│ │ ├── ic_github_circle_white_24dp.png
│ │ ├── ic_github_circle_white_36dp.png
│ │ ├── ic_github_circle_white_48dp.png
│ │ ├── ic_google_play_black_18dp.png
│ │ ├── ic_google_play_black_24dp.png
│ │ ├── ic_google_play_black_36dp.png
│ │ ├── ic_google_play_black_48dp.png
│ │ ├── ic_google_play_grey600_18dp.png
│ │ ├── ic_google_play_grey600_24dp.png
│ │ ├── ic_google_play_grey600_36dp.png
│ │ ├── ic_google_play_grey600_48dp.png
│ │ ├── ic_google_play_white_18dp.png
│ │ ├── ic_google_play_white_24dp.png
│ │ ├── ic_google_play_white_36dp.png
│ │ ├── ic_google_play_white_48dp.png
│ │ ├── ic_web_black_18dp.png
│ │ ├── ic_web_black_24dp.png
│ │ ├── ic_web_black_36dp.png
│ │ ├── ic_web_black_48dp.png
│ │ ├── ic_web_grey600_18dp.png
│ │ ├── ic_web_grey600_24dp.png
│ │ ├── ic_web_grey600_36dp.png
│ │ ├── ic_web_grey600_48dp.png
│ │ ├── ic_web_white_18dp.png
│ │ ├── ic_web_white_24dp.png
│ │ ├── ic_web_white_36dp.png
│ │ ├── ic_web_white_48dp.png
│ │ ├── ic_youtube_black_18dp.png
│ │ ├── ic_youtube_black_24dp.png
│ │ ├── ic_youtube_black_36dp.png
│ │ ├── ic_youtube_black_48dp.png
│ │ ├── ic_youtube_grey600_18dp.png
│ │ ├── ic_youtube_grey600_24dp.png
│ │ ├── ic_youtube_grey600_36dp.png
│ │ ├── ic_youtube_grey600_48dp.png
│ │ ├── ic_youtube_white_18dp.png
│ │ ├── ic_youtube_white_24dp.png
│ │ ├── ic_youtube_white_36dp.png
│ │ └── ic_youtube_white_48dp.png
│ │ ├── drawable-xhdpi
│ │ ├── ic_account_group_black_18dp.png
│ │ ├── ic_account_group_black_24dp.png
│ │ ├── ic_account_group_black_36dp.png
│ │ ├── ic_account_group_black_48dp.png
│ │ ├── ic_account_group_grey600_18dp.png
│ │ ├── ic_account_group_grey600_24dp.png
│ │ ├── ic_account_group_grey600_36dp.png
│ │ ├── ic_account_group_grey600_48dp.png
│ │ ├── ic_account_group_white_18dp.png
│ │ ├── ic_account_group_white_24dp.png
│ │ ├── ic_account_group_white_36dp.png
│ │ ├── ic_account_group_white_48dp.png
│ │ ├── ic_face_profile_black_18dp.png
│ │ ├── ic_face_profile_black_24dp.png
│ │ ├── ic_face_profile_black_36dp.png
│ │ ├── ic_face_profile_black_48dp.png
│ │ ├── ic_face_profile_grey600_18dp.png
│ │ ├── ic_face_profile_grey600_24dp.png
│ │ ├── ic_face_profile_grey600_36dp.png
│ │ ├── ic_face_profile_grey600_48dp.png
│ │ ├── ic_face_profile_white_18dp.png
│ │ ├── ic_face_profile_white_24dp.png
│ │ ├── ic_face_profile_white_36dp.png
│ │ ├── ic_face_profile_white_48dp.png
│ │ ├── ic_facebook_black_18dp.png
│ │ ├── ic_facebook_black_24dp.png
│ │ ├── ic_facebook_black_36dp.png
│ │ ├── ic_facebook_black_48dp.png
│ │ ├── ic_facebook_grey600_18dp.png
│ │ ├── ic_facebook_grey600_24dp.png
│ │ ├── ic_facebook_grey600_36dp.png
│ │ ├── ic_facebook_grey600_48dp.png
│ │ ├── ic_facebook_white_18dp.png
│ │ ├── ic_facebook_white_24dp.png
│ │ ├── ic_facebook_white_36dp.png
│ │ ├── ic_facebook_white_48dp.png
│ │ ├── ic_github_circle_black_18dp.png
│ │ ├── ic_github_circle_black_24dp.png
│ │ ├── ic_github_circle_black_36dp.png
│ │ ├── ic_github_circle_black_48dp.png
│ │ ├── ic_github_circle_grey600_18dp.png
│ │ ├── ic_github_circle_grey600_24dp.png
│ │ ├── ic_github_circle_grey600_36dp.png
│ │ ├── ic_github_circle_grey600_48dp.png
│ │ ├── ic_github_circle_white_18dp.png
│ │ ├── ic_github_circle_white_24dp.png
│ │ ├── ic_github_circle_white_36dp.png
│ │ ├── ic_github_circle_white_48dp.png
│ │ ├── ic_google_play_black_18dp.png
│ │ ├── ic_google_play_black_24dp.png
│ │ ├── ic_google_play_black_36dp.png
│ │ ├── ic_google_play_black_48dp.png
│ │ ├── ic_google_play_grey600_18dp.png
│ │ ├── ic_google_play_grey600_24dp.png
│ │ ├── ic_google_play_grey600_36dp.png
│ │ ├── ic_google_play_grey600_48dp.png
│ │ ├── ic_google_play_white_18dp.png
│ │ ├── ic_google_play_white_24dp.png
│ │ ├── ic_google_play_white_36dp.png
│ │ ├── ic_google_play_white_48dp.png
│ │ ├── ic_web_black_18dp.png
│ │ ├── ic_web_black_24dp.png
│ │ ├── ic_web_black_36dp.png
│ │ ├── ic_web_black_48dp.png
│ │ ├── ic_web_grey600_18dp.png
│ │ ├── ic_web_grey600_24dp.png
│ │ ├── ic_web_grey600_36dp.png
│ │ ├── ic_web_grey600_48dp.png
│ │ ├── ic_web_white_18dp.png
│ │ ├── ic_web_white_24dp.png
│ │ ├── ic_web_white_36dp.png
│ │ ├── ic_web_white_48dp.png
│ │ ├── ic_youtube_black_18dp.png
│ │ ├── ic_youtube_black_24dp.png
│ │ ├── ic_youtube_black_36dp.png
│ │ ├── ic_youtube_black_48dp.png
│ │ ├── ic_youtube_grey600_18dp.png
│ │ ├── ic_youtube_grey600_24dp.png
│ │ ├── ic_youtube_grey600_36dp.png
│ │ ├── ic_youtube_grey600_48dp.png
│ │ ├── ic_youtube_white_18dp.png
│ │ ├── ic_youtube_white_24dp.png
│ │ ├── ic_youtube_white_36dp.png
│ │ └── ic_youtube_white_48dp.png
│ │ ├── drawable-xxhdpi
│ │ ├── ic_account_group_black_18dp.png
│ │ ├── ic_account_group_black_24dp.png
│ │ ├── ic_account_group_black_36dp.png
│ │ ├── ic_account_group_black_48dp.png
│ │ ├── ic_account_group_grey600_18dp.png
│ │ ├── ic_account_group_grey600_24dp.png
│ │ ├── ic_account_group_grey600_36dp.png
│ │ ├── ic_account_group_grey600_48dp.png
│ │ ├── ic_account_group_white_18dp.png
│ │ ├── ic_account_group_white_24dp.png
│ │ ├── ic_account_group_white_36dp.png
│ │ ├── ic_account_group_white_48dp.png
│ │ ├── ic_face_profile_black_18dp.png
│ │ ├── ic_face_profile_black_24dp.png
│ │ ├── ic_face_profile_black_36dp.png
│ │ ├── ic_face_profile_black_48dp.png
│ │ ├── ic_face_profile_grey600_18dp.png
│ │ ├── ic_face_profile_grey600_24dp.png
│ │ ├── ic_face_profile_grey600_36dp.png
│ │ ├── ic_face_profile_grey600_48dp.png
│ │ ├── ic_face_profile_white_18dp.png
│ │ ├── ic_face_profile_white_24dp.png
│ │ ├── ic_face_profile_white_36dp.png
│ │ ├── ic_face_profile_white_48dp.png
│ │ ├── ic_facebook_black_18dp.png
│ │ ├── ic_facebook_black_24dp.png
│ │ ├── ic_facebook_black_36dp.png
│ │ ├── ic_facebook_black_48dp.png
│ │ ├── ic_facebook_grey600_18dp.png
│ │ ├── ic_facebook_grey600_24dp.png
│ │ ├── ic_facebook_grey600_36dp.png
│ │ ├── ic_facebook_grey600_48dp.png
│ │ ├── ic_facebook_white_18dp.png
│ │ ├── ic_facebook_white_24dp.png
│ │ ├── ic_facebook_white_36dp.png
│ │ ├── ic_facebook_white_48dp.png
│ │ ├── ic_github_circle_black_18dp.png
│ │ ├── ic_github_circle_black_24dp.png
│ │ ├── ic_github_circle_black_36dp.png
│ │ ├── ic_github_circle_black_48dp.png
│ │ ├── ic_github_circle_grey600_18dp.png
│ │ ├── ic_github_circle_grey600_24dp.png
│ │ ├── ic_github_circle_grey600_36dp.png
│ │ ├── ic_github_circle_grey600_48dp.png
│ │ ├── ic_github_circle_white_18dp.png
│ │ ├── ic_github_circle_white_24dp.png
│ │ ├── ic_github_circle_white_36dp.png
│ │ ├── ic_github_circle_white_48dp.png
│ │ ├── ic_google_play_black_18dp.png
│ │ ├── ic_google_play_black_24dp.png
│ │ ├── ic_google_play_black_36dp.png
│ │ ├── ic_google_play_black_48dp.png
│ │ ├── ic_google_play_grey600_18dp.png
│ │ ├── ic_google_play_grey600_24dp.png
│ │ ├── ic_google_play_grey600_36dp.png
│ │ ├── ic_google_play_grey600_48dp.png
│ │ ├── ic_google_play_white_18dp.png
│ │ ├── ic_google_play_white_24dp.png
│ │ ├── ic_google_play_white_36dp.png
│ │ ├── ic_google_play_white_48dp.png
│ │ ├── ic_web_black_18dp.png
│ │ ├── ic_web_black_24dp.png
│ │ ├── ic_web_black_36dp.png
│ │ ├── ic_web_black_48dp.png
│ │ ├── ic_web_grey600_18dp.png
│ │ ├── ic_web_grey600_24dp.png
│ │ ├── ic_web_grey600_36dp.png
│ │ ├── ic_web_grey600_48dp.png
│ │ ├── ic_web_white_18dp.png
│ │ ├── ic_web_white_24dp.png
│ │ ├── ic_web_white_36dp.png
│ │ ├── ic_web_white_48dp.png
│ │ ├── ic_youtube_black_18dp.png
│ │ ├── ic_youtube_black_24dp.png
│ │ ├── ic_youtube_black_36dp.png
│ │ ├── ic_youtube_black_48dp.png
│ │ ├── ic_youtube_grey600_18dp.png
│ │ ├── ic_youtube_grey600_24dp.png
│ │ ├── ic_youtube_grey600_36dp.png
│ │ ├── ic_youtube_grey600_48dp.png
│ │ ├── ic_youtube_white_18dp.png
│ │ ├── ic_youtube_white_24dp.png
│ │ ├── ic_youtube_white_36dp.png
│ │ └── ic_youtube_white_48dp.png
│ │ ├── drawable-xxxhdpi
│ │ ├── ic_account_group_black_18dp.png
│ │ ├── ic_account_group_black_24dp.png
│ │ ├── ic_account_group_black_36dp.png
│ │ ├── ic_account_group_black_48dp.png
│ │ ├── ic_account_group_grey600_18dp.png
│ │ ├── ic_account_group_grey600_24dp.png
│ │ ├── ic_account_group_grey600_36dp.png
│ │ ├── ic_account_group_grey600_48dp.png
│ │ ├── ic_account_group_white_18dp.png
│ │ ├── ic_account_group_white_24dp.png
│ │ ├── ic_account_group_white_36dp.png
│ │ ├── ic_account_group_white_48dp.png
│ │ ├── ic_face_profile_black_18dp.png
│ │ ├── ic_face_profile_black_24dp.png
│ │ ├── ic_face_profile_black_36dp.png
│ │ ├── ic_face_profile_black_48dp.png
│ │ ├── ic_face_profile_grey600_18dp.png
│ │ ├── ic_face_profile_grey600_24dp.png
│ │ ├── ic_face_profile_grey600_36dp.png
│ │ ├── ic_face_profile_grey600_48dp.png
│ │ ├── ic_face_profile_white_18dp.png
│ │ ├── ic_face_profile_white_24dp.png
│ │ ├── ic_face_profile_white_36dp.png
│ │ ├── ic_face_profile_white_48dp.png
│ │ ├── ic_facebook_black_18dp.png
│ │ ├── ic_facebook_black_24dp.png
│ │ ├── ic_facebook_black_36dp.png
│ │ ├── ic_facebook_black_48dp.png
│ │ ├── ic_facebook_grey600_18dp.png
│ │ ├── ic_facebook_grey600_24dp.png
│ │ ├── ic_facebook_grey600_36dp.png
│ │ ├── ic_facebook_grey600_48dp.png
│ │ ├── ic_facebook_white_18dp.png
│ │ ├── ic_facebook_white_24dp.png
│ │ ├── ic_facebook_white_36dp.png
│ │ ├── ic_facebook_white_48dp.png
│ │ ├── ic_github_circle_black_18dp.png
│ │ ├── ic_github_circle_black_24dp.png
│ │ ├── ic_github_circle_black_36dp.png
│ │ ├── ic_github_circle_black_48dp.png
│ │ ├── ic_github_circle_grey600_18dp.png
│ │ ├── ic_github_circle_grey600_24dp.png
│ │ ├── ic_github_circle_grey600_36dp.png
│ │ ├── ic_github_circle_grey600_48dp.png
│ │ ├── ic_github_circle_white_18dp.png
│ │ ├── ic_github_circle_white_24dp.png
│ │ ├── ic_github_circle_white_36dp.png
│ │ ├── ic_github_circle_white_48dp.png
│ │ ├── ic_google_play_black_18dp.png
│ │ ├── ic_google_play_black_24dp.png
│ │ ├── ic_google_play_black_36dp.png
│ │ ├── ic_google_play_black_48dp.png
│ │ ├── ic_google_play_grey600_18dp.png
│ │ ├── ic_google_play_grey600_24dp.png
│ │ ├── ic_google_play_grey600_36dp.png
│ │ ├── ic_google_play_grey600_48dp.png
│ │ ├── ic_google_play_white_18dp.png
│ │ ├── ic_google_play_white_24dp.png
│ │ ├── ic_google_play_white_36dp.png
│ │ ├── ic_google_play_white_48dp.png
│ │ ├── ic_web_black_18dp.png
│ │ ├── ic_web_black_24dp.png
│ │ ├── ic_web_black_36dp.png
│ │ ├── ic_web_black_48dp.png
│ │ ├── ic_web_grey600_18dp.png
│ │ ├── ic_web_grey600_24dp.png
│ │ ├── ic_web_grey600_36dp.png
│ │ ├── ic_web_grey600_48dp.png
│ │ ├── ic_web_white_18dp.png
│ │ ├── ic_web_white_24dp.png
│ │ ├── ic_web_white_36dp.png
│ │ ├── ic_web_white_48dp.png
│ │ ├── ic_youtube_black_18dp.png
│ │ ├── ic_youtube_black_24dp.png
│ │ ├── ic_youtube_black_36dp.png
│ │ ├── ic_youtube_black_48dp.png
│ │ ├── ic_youtube_grey600_18dp.png
│ │ ├── ic_youtube_grey600_24dp.png
│ │ ├── ic_youtube_grey600_36dp.png
│ │ ├── ic_youtube_grey600_48dp.png
│ │ ├── ic_youtube_white_18dp.png
│ │ ├── ic_youtube_white_24dp.png
│ │ ├── ic_youtube_white_36dp.png
│ │ └── ic_youtube_white_48dp.png
│ │ ├── layout
│ │ ├── activity_office_about.xml
│ │ └── office_member.xml
│ │ └── values
│ │ └── strings.xml
│ └── test
│ └── java
│ └── p32929
│ └── officeaboutlib
│ └── ExampleUnitTest.java
└── settings.gradle
/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/
5 | .DS_Store
6 | /build
7 | /app/build
8 | /app/release
9 | /captures
10 | *.externalNativeBuild
11 | *.apk
12 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2019 Fayaz Bin Salam
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Update!!!
2 | A newer, easier & better version of this library can be found here: https://github.com/p32929/MaterialOfficeAbout
3 |
4 | # OfficeAbout
5 | A simple about screen library for Android for a Team of people
6 |
7 | ## Screenshot
8 |
9 |
10 |
11 | []() []() []() []() []() []() []() []() []() []() []() []() []() []() []() []() []() []() []() []() []() []() []() []()
12 |
13 | ## Share
14 | Sharing with your friends is just one click away from here
15 |
16 | [](https://www.facebook.com/sharer/sharer.php?u=https://github.com/p32929/OfficeAbout)
17 | [](https://twitter.com/intent/tweet?source=https://github.com/p32929/OfficeAbout)
18 | [](https://www.tumblr.com/share?v=3&u=https://github.com/p32929/OfficeAbout)
19 | [](https://getpocket.com/save?url=https://github.com/p32929/OfficeAbout)
20 | [](https://pinterest.com/pin/create/button/?url=https://github.com/p32929/OfficeAbout)
21 | [](https://www.reddit.com/submit?url=https://github.com/p32929/OfficeAbout)
22 | [](https://www.linkedin.com/shareArticle?mini=true&url=https://github.com/p32929/OfficeAbout)
23 | [](https://api.whatsapp.com/send?text=https://github.com/p32929/OfficeAbout)
24 |
25 | ## Support
26 | If you like my works and want to support me/my works, feel free to support or donate. My payment details can be found here: https://p32929.github.io/SendMoney2Me/
27 |
28 | ## Installation
29 | Add it in your root build.gradle at the end of repositories:
30 | ```
31 | allprojects {
32 | repositories {
33 | maven { url 'https://jitpack.io' }
34 | }
35 | }
36 | ```
37 |
38 | Add the dependency
39 | ```
40 | dependencies {
41 | implementation 'com.github.p32929:OfficeAbout:1.0.0.7'
42 | }
43 | ```
44 |
45 | # Usage:
46 | * Initialize:
47 |
48 | `OfficeAboutHelper officeAboutHelper = new OfficeAboutHelper(this, "https://raw.githubusercontent.com/p32929/SomeHowTosAndTexts/master/Office/OfficeInfo.json");`
49 |
50 | * Show about activity:
51 |
52 | `officeAboutHelper.showAboutActivity();`
53 |
54 | That's it. Simple as ever :)
55 |
56 | # JSON
57 | Your JSON data should be somewhat like this:
58 | ```
59 | {
60 | "officeLogoUrl": "https://user-images.githubusercontent.com/6418354/62771043-1af00180-babe-11e9-8830-7904a358ccc0.png",
61 | "googlePlayUrl": "https://play.google.com/store/apps/developer?id=Rich+IT",
62 | "facebookPageUrl": "https://www.facebook.com/rich.it.ctg",
63 | "facebookPageID": "104754327537968",
64 | "groupUrl": "https://www.facebook.com/groups/518485748694084/",
65 | "youtubeUrl": "https://www.youtube.com/user/marquesbrownlee",
66 | "githubUrl": "http://github.com/p32929",
67 | "webUrl": "https://p32929.github.io/Portfolio/",
68 | "members": [
69 | {
70 | "imageUrl": "https://avatars1.githubusercontent.com/u/6418354?s=460&v=4",
71 | "name": "Fayaz Bin Salam",
72 | "post": "Founder & CEO",
73 | "contactUrl": "https://www.facebook.com/p32929"
74 | },
75 | {
76 | "imageUrl": "https://user-images.githubusercontent.com/6418354/62595278-92c3fd80-b8ff-11e9-89b1-8a4b0d3fbae4.jpg",
77 | "name": "Arfatul Mowla Shuvo",
78 | "post": "Software Developer",
79 | "contactUrl": "https://www.facebook.com/mowla.shuvo"
80 | },
81 | {
82 | "imageUrl": "https://user-images.githubusercontent.com/6418354/62595308-b25b2600-b8ff-11e9-86e1-5d58cb1a6cac.JPG",
83 | "name": "Masrur Mehedi",
84 | "post": "Software Developer",
85 | "contactUrl": "https://www.facebook.com/masrorulhoque.mehedi.1"
86 | },
87 | {
88 | "imageUrl": "https://user-images.githubusercontent.com/6418354/62595290-a0798300-b8ff-11e9-9b78-ea9262f4bf94.JPG",
89 | "name": "Xenon",
90 | "post": "Software Developer",
91 | "contactUrl": "https://www.facebook.com/plabon.shuvo1"
92 | },
93 | {
94 | "imageUrl": "https://user-images.githubusercontent.com/6418354/62595321-bdae5180-b8ff-11e9-8b44-3378b8a88ce3.jpg",
95 | "name": "Misbah",
96 | "post": "Software Developer",
97 | "contactUrl": ""
98 | }
99 | ]
100 | }
101 | ```
102 |
103 | And lastly, if you're using pro-guard, add these lines in your app `proguard-rules.pro` file:
104 |
105 | `-keep public class p32929.officeaboutlib.Models.** { *; }`
106 |
107 | # LICENSE
108 | ```
109 | MIT License
110 |
111 | Copyright (c) 2019 Fayaz Bin Salam
112 |
113 | Permission is hereby granted, free of charge, to any person obtaining a copy
114 | of this software and associated documentation files (the "Software"), to deal
115 | in the Software without restriction, including without limitation the rights
116 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
117 | copies of the Software, and to permit persons to whom the Software is
118 | furnished to do so, subject to the following conditions:
119 |
120 | The above copyright notice and this permission notice shall be included in all
121 | copies or substantial portions of the Software.
122 |
123 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
124 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
125 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
126 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
127 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
128 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
129 | SOFTWARE.
130 |
131 | ```
132 |
--------------------------------------------------------------------------------
/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.application'
2 |
3 | android {
4 | compileSdkVersion 29
5 | buildToolsVersion "29.0.1"
6 | defaultConfig {
7 | applicationId "p32929.officeaboutapp"
8 | minSdkVersion 15
9 | targetSdkVersion 29
10 | versionCode 1
11 | versionName "1.0"
12 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
13 | }
14 | buildTypes {
15 | release {
16 | minifyEnabled false
17 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
18 | }
19 | }
20 | }
21 |
22 | dependencies {
23 | implementation fileTree(dir: 'libs', include: ['*.jar'])
24 | implementation 'androidx.appcompat:appcompat:1.0.2'
25 | implementation project(path: ':officeaboutlib')
26 | }
27 |
--------------------------------------------------------------------------------
/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # You can control the set of applied configuration files using the
3 | # proguardFiles setting in build.gradle.
4 | #
5 | # For more details, see
6 | # http://developer.android.com/guide/developing/tools/proguard.html
7 |
8 | # If your project uses WebView with JS, uncomment the following
9 | # and specify the fully qualified class name to the JavaScript interface
10 | # class:
11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12 | # public *;
13 | #}
14 |
15 | # Uncomment this to preserve the line number information for
16 | # debugging stack traces.
17 | #-keepattributes SourceFile,LineNumberTable
18 |
19 | # If you keep the line number information, uncomment this to
20 | # hide the original source file name.
21 | #-renamesourcefileattribute SourceFile
22 |
--------------------------------------------------------------------------------
/app/src/androidTest/java/p32929/officeaboutapp/ExampleInstrumentedTest.java:
--------------------------------------------------------------------------------
1 | package p32929.officeaboutapp;
2 |
3 | import android.content.Context;
4 |
5 | import androidx.test.InstrumentationRegistry;
6 | import androidx.test.runner.AndroidJUnit4;
7 |
8 | import org.junit.Test;
9 | import org.junit.runner.RunWith;
10 |
11 | import static org.junit.Assert.*;
12 |
13 | /**
14 | * Instrumented test, which will execute on an Android device.
15 | *
16 | * @see Testing documentation
17 | */
18 | @RunWith(AndroidJUnit4.class)
19 | public class ExampleInstrumentedTest {
20 | @Test
21 | public void useAppContext() {
22 | // Context of the app under test.
23 | Context appContext = InstrumentationRegistry.getTargetContext();
24 |
25 | assertEquals("p32929.officeaboutapp", appContext.getPackageName());
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/app/src/main/java/p32929/officeaboutapp/MainActivity.java:
--------------------------------------------------------------------------------
1 | package p32929.officeaboutapp;
2 |
3 | import android.os.Bundle;
4 | import android.view.View;
5 |
6 | import androidx.appcompat.app.AppCompatActivity;
7 |
8 | import p32929.officeaboutlib.Others.OfficeAboutHelper;
9 |
10 | public class MainActivity extends AppCompatActivity {
11 |
12 | OfficeAboutHelper officeAboutHelper;
13 |
14 | @Override
15 | protected void onCreate(Bundle savedInstanceState) {
16 | super.onCreate(savedInstanceState);
17 | setContentView(R.layout.activity_main);
18 |
19 | officeAboutHelper = new OfficeAboutHelper(this, "https://raw.githubusercontent.com/p32929/SomeHowTosAndTexts/master/Office/OfficeInfo.json");
20 | officeAboutHelper.showAboutActivity();
21 | }
22 |
23 | public void showAboutActivity(View view) {
24 | officeAboutHelper.showAboutActivity();
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v24/ic_launcher_foreground.xml:
--------------------------------------------------------------------------------
1 |
7 |
12 |
13 |
19 |
22 |
25 |
26 |
27 |
28 |
34 |
35 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_launcher_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
10 |
15 |
20 |
25 |
30 |
35 |
40 |
45 |
50 |
55 |
60 |
65 |
70 |
75 |
80 |
85 |
90 |
95 |
100 |
105 |
110 |
115 |
120 |
125 |
130 |
135 |
140 |
145 |
150 |
155 |
160 |
165 |
170 |
171 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
15 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #008577
4 | #00574B
5 | #D81B60
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | OfficeAboutApp
3 |
4 |
--------------------------------------------------------------------------------
/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/app/src/test/java/p32929/officeaboutapp/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package p32929.officeaboutapp;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | google()
6 | jcenter()
7 |
8 | }
9 | dependencies {
10 | classpath 'com.android.tools.build:gradle:3.4.2'
11 |
12 | // NOTE: Do not place your application dependencies here; they belong
13 | // in the individual module build.gradle files
14 | }
15 | }
16 |
17 | allprojects {
18 | repositories {
19 | google()
20 | jcenter()
21 |
22 | }
23 | }
24 |
25 | task clean(type: Delete) {
26 | delete rootProject.buildDir
27 | }
28 |
--------------------------------------------------------------------------------
/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 | # IDE (e.g. Android Studio) users:
3 | # Gradle settings configured through the IDE *will override*
4 | # any settings specified in this file.
5 | # For more details on how to configure your build environment visit
6 | # http://www.gradle.org/docs/current/userguide/build_environment.html
7 | # Specifies the JVM arguments used for the daemon process.
8 | # The setting is particularly useful for tweaking memory settings.
9 | org.gradle.jvmargs=-Xmx1536m
10 | # When configured, Gradle will run in incubating parallel mode.
11 | # This option should only be used with decoupled projects. More details, visit
12 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
13 | # org.gradle.parallel=true
14 | # AndroidX package structure to make it clearer which packages are bundled with the
15 | # Android operating system, and which are packaged with your app's APK
16 | # https://developer.android.com/topic/libraries/support-library/androidx-rn
17 | android.useAndroidX=true
18 | # Automatically convert third-party libraries to use AndroidX
19 | android.enableJetifier=true
20 |
21 |
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Mon Jul 22 18:28:22 BDT 2019
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip
7 |
--------------------------------------------------------------------------------
/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | ##############################################################################
4 | ##
5 | ## Gradle start up script for UN*X
6 | ##
7 | ##############################################################################
8 |
9 | # Attempt to set APP_HOME
10 | # Resolve links: $0 may be a link
11 | PRG="$0"
12 | # Need this for relative symlinks.
13 | while [ -h "$PRG" ] ; do
14 | ls=`ls -ld "$PRG"`
15 | link=`expr "$ls" : '.*-> \(.*\)$'`
16 | if expr "$link" : '/.*' > /dev/null; then
17 | PRG="$link"
18 | else
19 | PRG=`dirname "$PRG"`"/$link"
20 | fi
21 | done
22 | SAVED="`pwd`"
23 | cd "`dirname \"$PRG\"`/" >/dev/null
24 | APP_HOME="`pwd -P`"
25 | cd "$SAVED" >/dev/null
26 |
27 | APP_NAME="Gradle"
28 | APP_BASE_NAME=`basename "$0"`
29 |
30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
31 | DEFAULT_JVM_OPTS=""
32 |
33 | # Use the maximum available, or set MAX_FD != -1 to use that value.
34 | MAX_FD="maximum"
35 |
36 | warn () {
37 | echo "$*"
38 | }
39 |
40 | die () {
41 | echo
42 | echo "$*"
43 | echo
44 | exit 1
45 | }
46 |
47 | # OS specific support (must be 'true' or 'false').
48 | cygwin=false
49 | msys=false
50 | darwin=false
51 | nonstop=false
52 | case "`uname`" in
53 | CYGWIN* )
54 | cygwin=true
55 | ;;
56 | Darwin* )
57 | darwin=true
58 | ;;
59 | MINGW* )
60 | msys=true
61 | ;;
62 | NONSTOP* )
63 | nonstop=true
64 | ;;
65 | esac
66 |
67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
68 |
69 | # Determine the Java command to use to start the JVM.
70 | if [ -n "$JAVA_HOME" ] ; then
71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
72 | # IBM's JDK on AIX uses strange locations for the executables
73 | JAVACMD="$JAVA_HOME/jre/sh/java"
74 | else
75 | JAVACMD="$JAVA_HOME/bin/java"
76 | fi
77 | if [ ! -x "$JAVACMD" ] ; then
78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
79 |
80 | Please set the JAVA_HOME variable in your environment to match the
81 | location of your Java installation."
82 | fi
83 | else
84 | JAVACMD="java"
85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
86 |
87 | Please set the JAVA_HOME variable in your environment to match the
88 | location of your Java installation."
89 | fi
90 |
91 | # Increase the maximum file descriptors if we can.
92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
93 | MAX_FD_LIMIT=`ulimit -H -n`
94 | if [ $? -eq 0 ] ; then
95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
96 | MAX_FD="$MAX_FD_LIMIT"
97 | fi
98 | ulimit -n $MAX_FD
99 | if [ $? -ne 0 ] ; then
100 | warn "Could not set maximum file descriptor limit: $MAX_FD"
101 | fi
102 | else
103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
104 | fi
105 | fi
106 |
107 | # For Darwin, add options to specify how the application appears in the dock
108 | if $darwin; then
109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
110 | fi
111 |
112 | # For Cygwin, switch paths to Windows format before running java
113 | if $cygwin ; then
114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
116 | JAVACMD=`cygpath --unix "$JAVACMD"`
117 |
118 | # We build the pattern for arguments to be converted via cygpath
119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
120 | SEP=""
121 | for dir in $ROOTDIRSRAW ; do
122 | ROOTDIRS="$ROOTDIRS$SEP$dir"
123 | SEP="|"
124 | done
125 | OURCYGPATTERN="(^($ROOTDIRS))"
126 | # Add a user-defined pattern to the cygpath arguments
127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
129 | fi
130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
131 | i=0
132 | for arg in "$@" ; do
133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
135 |
136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
138 | else
139 | eval `echo args$i`="\"$arg\""
140 | fi
141 | i=$((i+1))
142 | done
143 | case $i in
144 | (0) set -- ;;
145 | (1) set -- "$args0" ;;
146 | (2) set -- "$args0" "$args1" ;;
147 | (3) set -- "$args0" "$args1" "$args2" ;;
148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
154 | esac
155 | fi
156 |
157 | # Escape application args
158 | save () {
159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
160 | echo " "
161 | }
162 | APP_ARGS=$(save "$@")
163 |
164 | # Collect all arguments for the java command, following the shell quoting and substitution rules
165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
166 |
167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
169 | cd "$(dirname "$0")"
170 | fi
171 |
172 | exec "$JAVACMD" "$@"
173 |
--------------------------------------------------------------------------------
/gradlew.bat:
--------------------------------------------------------------------------------
1 | @if "%DEBUG%" == "" @echo off
2 | @rem ##########################################################################
3 | @rem
4 | @rem Gradle startup script for Windows
5 | @rem
6 | @rem ##########################################################################
7 |
8 | @rem Set local scope for the variables with windows NT shell
9 | if "%OS%"=="Windows_NT" setlocal
10 |
11 | set DIRNAME=%~dp0
12 | if "%DIRNAME%" == "" set DIRNAME=.
13 | set APP_BASE_NAME=%~n0
14 | set APP_HOME=%DIRNAME%
15 |
16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
17 | set DEFAULT_JVM_OPTS=
18 |
19 | @rem Find java.exe
20 | if defined JAVA_HOME goto findJavaFromJavaHome
21 |
22 | set JAVA_EXE=java.exe
23 | %JAVA_EXE% -version >NUL 2>&1
24 | if "%ERRORLEVEL%" == "0" goto init
25 |
26 | echo.
27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
28 | echo.
29 | echo Please set the JAVA_HOME variable in your environment to match the
30 | echo location of your Java installation.
31 |
32 | goto fail
33 |
34 | :findJavaFromJavaHome
35 | set JAVA_HOME=%JAVA_HOME:"=%
36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
37 |
38 | if exist "%JAVA_EXE%" goto init
39 |
40 | echo.
41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
42 | echo.
43 | echo Please set the JAVA_HOME variable in your environment to match the
44 | echo location of your Java installation.
45 |
46 | goto fail
47 |
48 | :init
49 | @rem Get command-line arguments, handling Windows variants
50 |
51 | if not "%OS%" == "Windows_NT" goto win9xME_args
52 |
53 | :win9xME_args
54 | @rem Slurp the command line arguments.
55 | set CMD_LINE_ARGS=
56 | set _SKIP=2
57 |
58 | :win9xME_args_slurp
59 | if "x%~1" == "x" goto execute
60 |
61 | set CMD_LINE_ARGS=%*
62 |
63 | :execute
64 | @rem Setup the command line
65 |
66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
67 |
68 | @rem Execute Gradle
69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
70 |
71 | :end
72 | @rem End local scope for the variables with windows NT shell
73 | if "%ERRORLEVEL%"=="0" goto mainEnd
74 |
75 | :fail
76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
77 | rem the _cmd.exe /c_ return code!
78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
79 | exit /b 1
80 |
81 | :mainEnd
82 | if "%OS%"=="Windows_NT" endlocal
83 |
84 | :omega
85 |
--------------------------------------------------------------------------------
/officeaboutlib/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/officeaboutlib/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.library'
2 |
3 | android {
4 | compileSdkVersion 29
5 | buildToolsVersion "29.0.1"
6 |
7 | defaultConfig {
8 | minSdkVersion 15
9 | targetSdkVersion 29
10 | versionCode 1
11 | versionName "1.0"
12 |
13 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
14 | }
15 |
16 | buildTypes {
17 | release {
18 | minifyEnabled false
19 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
20 | }
21 | }
22 |
23 | }
24 |
25 | dependencies {
26 | implementation fileTree(dir: 'libs', include: ['*.jar'])
27 | implementation 'androidx.appcompat:appcompat:1.0.2'
28 | implementation 'androidx.recyclerview:recyclerview-selection:1.0.0'
29 | implementation 'com.squareup.picasso:picasso:2.71828'
30 | implementation 'de.hdodenhof:circleimageview:3.0.0'
31 | implementation 'androidx.cardview:cardview:1.0.0'
32 | implementation 'com.google.code.gson:gson:2.8.5'
33 | }
34 |
--------------------------------------------------------------------------------
/officeaboutlib/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # You can control the set of applied configuration files using the
3 | # proguardFiles setting in build.gradle.
4 | #
5 | # For more details, see
6 | # http://developer.android.com/guide/developing/tools/proguard.html
7 |
8 | # If your project uses WebView with JS, uncomment the following
9 | # and specify the fully qualified class name to the JavaScript interface
10 | # class:
11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12 | # public *;
13 | #}
14 |
15 | # Uncomment this to preserve the line number information for
16 | # debugging stack traces.
17 | #-keepattributes SourceFile,LineNumberTable
18 |
19 | # If you keep the line number information, uncomment this to
20 | # hide the original source file name.
21 | #-renamesourcefileattribute SourceFile
22 |
23 | -keep public class p32929.officeaboutlib.Models.** { *; }
--------------------------------------------------------------------------------
/officeaboutlib/src/androidTest/java/p32929/officeaboutlib/ExampleInstrumentedTest.java:
--------------------------------------------------------------------------------
1 | package p32929.officeaboutlib;
2 |
3 | import android.content.Context;
4 |
5 | import androidx.test.InstrumentationRegistry;
6 | import androidx.test.runner.AndroidJUnit4;
7 |
8 | import org.junit.Test;
9 | import org.junit.runner.RunWith;
10 |
11 | import static org.junit.Assert.*;
12 |
13 | /**
14 | * Instrumented test, which will execute on an Android device.
15 | *
16 | * @see Testing documentation
17 | */
18 | @RunWith(AndroidJUnit4.class)
19 | public class ExampleInstrumentedTest {
20 | @Test
21 | public void useAppContext() {
22 | // Context of the app under test.
23 | Context appContext = InstrumentationRegistry.getTargetContext();
24 |
25 | assertEquals("p32929.officeaboutlib.test", appContext.getPackageName());
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/officeaboutlib/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/officeaboutlib/src/main/java/p32929/officeaboutlib/Adapters/AboutRecyclerviewAdapter.java:
--------------------------------------------------------------------------------
1 | package p32929.officeaboutlib.Adapters;
2 |
3 | import android.content.Context;
4 | import android.content.Intent;
5 | import android.net.Uri;
6 | import android.view.LayoutInflater;
7 | import android.view.View;
8 | import android.view.ViewGroup;
9 | import android.widget.ImageView;
10 | import android.widget.TextView;
11 | import android.widget.Toast;
12 |
13 | import androidx.annotation.NonNull;
14 | import androidx.cardview.widget.CardView;
15 | import androidx.recyclerview.widget.RecyclerView;
16 |
17 | import com.squareup.picasso.Picasso;
18 |
19 | import java.util.ArrayList;
20 |
21 | import p32929.officeaboutlib.Models.Member;
22 | import p32929.officeaboutlib.R;
23 |
24 | public class AboutRecyclerviewAdapter extends RecyclerView.Adapter {
25 |
26 | Context context;
27 | ArrayList members;
28 |
29 | public AboutRecyclerviewAdapter(Context context, ArrayList members) {
30 | this.context = context;
31 | this.members = members;
32 | }
33 |
34 | @NonNull
35 | @Override
36 |
37 | public AboutRecyclerviewAdapter.ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
38 | return new ViewHolder(LayoutInflater.from(context).inflate(R.layout.office_member, parent, false));
39 | }
40 |
41 | @Override
42 | public void onBindViewHolder(@NonNull AboutRecyclerviewAdapter.ViewHolder holder, int position) {
43 | final Member member = members.get(position);
44 |
45 | Picasso.get().load(member.getImageUrl()).placeholder(R.drawable.ic_face_profile_grey600_48dp).into(holder.imageView);
46 | holder.textViewName.setText("" + member.getName());
47 | holder.textViewPost.setText("" + member.getPost());
48 |
49 | holder.cardView.setOnClickListener(new View.OnClickListener() {
50 | @Override
51 | public void onClick(View view) {
52 | if (member.getContactUrl().isEmpty()) {
53 | Toast.makeText(context, "" + member.getName() + " has added no contact info", Toast.LENGTH_SHORT).show();
54 | } else {
55 | Intent browse = new Intent(Intent.ACTION_VIEW, Uri.parse(member.getContactUrl()));
56 | context.startActivity(browse);
57 | }
58 | }
59 | });
60 | }
61 |
62 | @Override
63 | public int getItemCount() {
64 | return members.size();
65 | }
66 |
67 | public class ViewHolder extends RecyclerView.ViewHolder {
68 |
69 | ImageView imageView;
70 | TextView textViewName, textViewPost;
71 | CardView cardView;
72 |
73 | public ViewHolder(@NonNull View itemView) {
74 | super(itemView);
75 |
76 | imageView = itemView.findViewById(R.id.faceImage);
77 | textViewName = itemView.findViewById(R.id.nameTv);
78 | textViewPost = itemView.findViewById(R.id.postTv);
79 |
80 | cardView = itemView.findViewById(R.id.backcard);
81 | }
82 | }
83 | }
84 |
--------------------------------------------------------------------------------
/officeaboutlib/src/main/java/p32929/officeaboutlib/Models/Member.java:
--------------------------------------------------------------------------------
1 | package p32929.officeaboutlib.Models;
2 |
3 | import android.os.Parcel;
4 | import android.os.Parcelable;
5 |
6 | public class Member implements Parcelable {
7 | String imageUrl;
8 | String name;
9 | String post;
10 | String contactUrl;
11 |
12 | public String getImageUrl() {
13 | return imageUrl;
14 | }
15 |
16 | public void setImageUrl(String imageUrl) {
17 | this.imageUrl = imageUrl;
18 | }
19 |
20 | public String getName() {
21 | return name;
22 | }
23 |
24 | public void setName(String name) {
25 | this.name = name;
26 | }
27 |
28 | public String getPost() {
29 | return post;
30 | }
31 |
32 | public void setPost(String post) {
33 | this.post = post;
34 | }
35 |
36 | public String getContactUrl() {
37 | return contactUrl;
38 | }
39 |
40 | public void setContactUrl(String contactUrl) {
41 | this.contactUrl = contactUrl;
42 | }
43 |
44 | protected Member(Parcel in) {
45 | imageUrl = in.readString();
46 | name = in.readString();
47 | post = in.readString();
48 | contactUrl = in.readString();
49 | }
50 |
51 | @Override
52 | public int describeContents() {
53 | return 0;
54 | }
55 |
56 | @Override
57 | public void writeToParcel(Parcel dest, int flags) {
58 | dest.writeString(imageUrl);
59 | dest.writeString(name);
60 | dest.writeString(post);
61 | dest.writeString(contactUrl);
62 | }
63 |
64 | @SuppressWarnings("unused")
65 | public static final Parcelable.Creator CREATOR = new Parcelable.Creator() {
66 | @Override
67 | public Member createFromParcel(Parcel in) {
68 | return new Member(in);
69 | }
70 |
71 | @Override
72 | public Member[] newArray(int size) {
73 | return new Member[size];
74 | }
75 | };
76 | }
--------------------------------------------------------------------------------
/officeaboutlib/src/main/java/p32929/officeaboutlib/Models/OfficeInfo.java:
--------------------------------------------------------------------------------
1 | package p32929.officeaboutlib.Models;
2 |
3 | import android.os.Parcel;
4 | import android.os.Parcelable;
5 |
6 | import java.util.ArrayList;
7 |
8 | public class OfficeInfo implements Parcelable {
9 | String officeLogoUrl;
10 | String googlePlayUrl;
11 | String facebookPageUrl;
12 | String facebookPageID;
13 | String groupUrl;
14 | String youtubeUrl;
15 | String githubUrl;
16 | String webUrl;
17 | ArrayList members;
18 |
19 | public String getOfficeLogoUrl() {
20 | return officeLogoUrl;
21 | }
22 |
23 | public void setOfficeLogoUrl(String officeLogoUrl) {
24 | this.officeLogoUrl = officeLogoUrl;
25 | }
26 |
27 | public String getGooglePlayUrl() {
28 | return googlePlayUrl;
29 | }
30 |
31 | public void setGooglePlayUrl(String googlePlayUrl) {
32 | this.googlePlayUrl = googlePlayUrl;
33 | }
34 |
35 | public String getFacebookPageUrl() {
36 | return facebookPageUrl;
37 | }
38 |
39 | public void setFacebookPageUrl(String facebookPageUrl) {
40 | this.facebookPageUrl = facebookPageUrl;
41 | }
42 |
43 | public String getFacebookPageID() {
44 | return facebookPageID;
45 | }
46 |
47 | public void setFacebookPageID(String facebookPageID) {
48 | this.facebookPageID = facebookPageID;
49 | }
50 |
51 | public String getGroupUrl() {
52 | return groupUrl;
53 | }
54 |
55 | public void setGroupUrl(String groupUrl) {
56 | this.groupUrl = groupUrl;
57 | }
58 |
59 | public String getYoutubeUrl() {
60 | return youtubeUrl;
61 | }
62 |
63 | public void setYoutubeUrl(String youtubeUrl) {
64 | this.youtubeUrl = youtubeUrl;
65 | }
66 |
67 | public String getGithubUrl() {
68 | return githubUrl;
69 | }
70 |
71 | public void setGithubUrl(String githubUrl) {
72 | this.githubUrl = githubUrl;
73 | }
74 |
75 | public String getWebUrl() {
76 | return webUrl;
77 | }
78 |
79 | public void setWebUrl(String webUrl) {
80 | this.webUrl = webUrl;
81 | }
82 |
83 | public ArrayList getMembers() {
84 | return members;
85 | }
86 |
87 | public void setMembers(ArrayList members) {
88 | this.members = members;
89 | }
90 |
91 | protected OfficeInfo(Parcel in) {
92 | officeLogoUrl = in.readString();
93 | googlePlayUrl = in.readString();
94 | facebookPageUrl = in.readString();
95 | facebookPageID = in.readString();
96 | groupUrl = in.readString();
97 | youtubeUrl = in.readString();
98 | githubUrl = in.readString();
99 | webUrl = in.readString();
100 | if (in.readByte() == 0x01) {
101 | members = new ArrayList();
102 | in.readList(members, Member.class.getClassLoader());
103 | } else {
104 | members = null;
105 | }
106 | }
107 |
108 | @Override
109 | public int describeContents() {
110 | return 0;
111 | }
112 |
113 | @Override
114 | public void writeToParcel(Parcel dest, int flags) {
115 | dest.writeString(officeLogoUrl);
116 | dest.writeString(googlePlayUrl);
117 | dest.writeString(facebookPageUrl);
118 | dest.writeString(facebookPageID);
119 | dest.writeString(groupUrl);
120 | dest.writeString(youtubeUrl);
121 | dest.writeString(githubUrl);
122 | dest.writeString(webUrl);
123 | if (members == null) {
124 | dest.writeByte((byte) (0x00));
125 | } else {
126 | dest.writeByte((byte) (0x01));
127 | dest.writeList(members);
128 | }
129 | }
130 |
131 | @SuppressWarnings("unused")
132 | public static final Parcelable.Creator CREATOR = new Parcelable.Creator() {
133 | @Override
134 | public OfficeInfo createFromParcel(Parcel in) {
135 | return new OfficeInfo(in);
136 | }
137 |
138 | @Override
139 | public OfficeInfo[] newArray(int size) {
140 | return new OfficeInfo[size];
141 | }
142 | };
143 | }
--------------------------------------------------------------------------------
/officeaboutlib/src/main/java/p32929/officeaboutlib/Others/GlobalMethods.java:
--------------------------------------------------------------------------------
1 | package p32929.officeaboutlib.Others;
2 |
3 | import android.content.Context;
4 | import android.content.Intent;
5 | import android.content.pm.ApplicationInfo;
6 | import android.content.pm.PackageManager;
7 | import android.net.Uri;
8 |
9 | import p32929.officeaboutlib.Models.OfficeInfo;
10 |
11 | public class GlobalMethods {
12 | public static boolean isAvailable(String something) {
13 | if (something == null) {
14 | return false;
15 | } else {
16 | if (something.isEmpty()) {
17 | return false;
18 | } else {
19 | return true;
20 | }
21 | }
22 | }
23 |
24 | public static Intent getFacebookPageIntent(Context context, OfficeInfo officeInfo) {
25 | PackageManager pm = context.getPackageManager();
26 | Uri uri = Uri.parse(officeInfo.getFacebookPageUrl());
27 | try {
28 | ApplicationInfo applicationInfo = pm.getApplicationInfo("com.facebook.katana", 0);
29 | if (applicationInfo.enabled) {
30 | uri = Uri.parse("fb://page/" + officeInfo.getFacebookPageID());
31 | }
32 | } catch (Exception e) {
33 | //
34 | }
35 |
36 | return new Intent(Intent.ACTION_VIEW, uri);
37 | }
38 | }
39 |
--------------------------------------------------------------------------------
/officeaboutlib/src/main/java/p32929/officeaboutlib/Others/MembersListener.java:
--------------------------------------------------------------------------------
1 | package p32929.officeaboutlib.Others;
2 |
3 | import p32929.officeaboutlib.Models.OfficeInfo;
4 |
5 | public interface MembersListener {
6 | void onJsonDataReceived(OfficeInfo officeInfo);
7 |
8 | void onError(String error);
9 | }
10 |
--------------------------------------------------------------------------------
/officeaboutlib/src/main/java/p32929/officeaboutlib/Others/OfficeAboutHelper.java:
--------------------------------------------------------------------------------
1 | package p32929.officeaboutlib.Others;
2 |
3 | import android.content.Context;
4 | import android.content.Intent;
5 |
6 | import p32929.officeaboutlib.Activities.OfficeAboutActivity;
7 |
8 | public class OfficeAboutHelper {
9 | Context context;
10 | String jsonUrl;
11 |
12 | public OfficeAboutHelper(Context context, String jsonUrl) {
13 | this.context = context;
14 | this.jsonUrl = jsonUrl;
15 |
16 | OfficeAboutActivity.jsonUrl = jsonUrl;
17 | }
18 |
19 | public void showAboutActivity() {
20 | context.startActivity(new Intent(context, OfficeAboutActivity.class));
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/officeaboutlib/src/main/java/p32929/officeaboutlib/Others/OfficeAboutLoader.java:
--------------------------------------------------------------------------------
1 | package p32929.officeaboutlib.Others;
2 |
3 | import android.content.Context;
4 | import android.net.ConnectivityManager;
5 | import android.net.NetworkInfo;
6 | import android.os.AsyncTask;
7 | import android.util.Log;
8 |
9 | import com.google.gson.Gson;
10 |
11 | import org.json.JSONObject;
12 |
13 | import java.io.BufferedReader;
14 | import java.io.InputStream;
15 | import java.io.InputStreamReader;
16 | import java.net.URL;
17 | import java.nio.charset.Charset;
18 |
19 | import p32929.officeaboutlib.Models.OfficeInfo;
20 |
21 | public class OfficeAboutLoader extends AsyncTask {
22 |
23 | String TAG = getClass().getSimpleName();
24 |
25 | Context context;
26 | String jsonUrl;
27 | MembersListener listener;
28 |
29 | public OfficeAboutLoader(Context context, String jsonUrl, MembersListener listener) {
30 | this.context = context;
31 | this.jsonUrl = jsonUrl;
32 | this.listener = listener;
33 | }
34 |
35 | @Override
36 | protected void onPreExecute() {
37 | super.onPreExecute();
38 |
39 | if (context == null || listener == null || jsonUrl == null) {
40 | Log.d(TAG, "onPreExecute: context == null || listener == null || jsonUrl == null");
41 | cancel(true);
42 | } else if (!isNetworkAvailable(context)) {
43 | listener.onError("Please check your network connection");
44 | cancel(true);
45 | } else if (jsonUrl.isEmpty()) {
46 | listener.onError("Please provide a valid JSON URL");
47 | cancel(true);
48 | }
49 | }
50 |
51 | @Override
52 | protected JSONObject doInBackground(Void... voids) {
53 | try {
54 | URL url = new URL(jsonUrl);
55 | InputStream is = url.openStream();
56 | BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(is, Charset.forName("UTF-8")));
57 |
58 | StringBuilder sb = new StringBuilder();
59 | int cp;
60 | while ((cp = bufferedReader.read()) != -1) {
61 | sb.append((char) cp);
62 | }
63 |
64 | Log.d(TAG, "doInBackground: JSON DATA: " + sb.toString());
65 |
66 | return new JSONObject(sb.toString());
67 | } catch (Exception e) {
68 | e.printStackTrace();
69 | }
70 |
71 | return null;
72 | }
73 |
74 | @Override
75 | protected void onPostExecute(JSONObject JSONObject) {
76 | super.onPostExecute(JSONObject);
77 |
78 | if (JSONObject != null) {
79 | try {
80 |
81 | OfficeInfo officeInfo = new Gson().fromJson(JSONObject.toString(), OfficeInfo.class);
82 | listener.onJsonDataReceived(officeInfo);
83 | } catch (Exception e) {
84 | e.printStackTrace();
85 | }
86 | } else {
87 | listener.onError("JSON data null");
88 | }
89 | }
90 |
91 | private boolean isNetworkAvailable(Context ctx) {
92 | ConnectivityManager connectivityManager
93 | = (ConnectivityManager) ctx.getSystemService(Context.CONNECTIVITY_SERVICE);
94 | NetworkInfo activeNetworkInfo = connectivityManager.getActiveNetworkInfo();
95 | return activeNetworkInfo != null && activeNetworkInfo.isConnected();
96 | }
97 | }
98 |
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_account_group_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_face_profile_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_facebook_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_github_circle_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_google_play_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_web_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_web_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_web_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_web_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_web_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_web_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_web_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_web_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_web_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_web_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_web_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_web_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_web_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_web_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_web_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_web_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_web_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_web_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_web_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_web_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_web_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_web_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_web_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_web_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-hdpi/ic_youtube_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_account_group_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_face_profile_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_facebook_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_github_circle_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_google_play_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_web_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_web_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_web_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_web_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_web_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_web_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_web_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_web_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_web_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_web_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_web_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_web_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_web_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_web_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_web_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_web_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_web_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_web_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_web_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_web_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_web_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_web_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_web_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_web_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-mdpi/ic_youtube_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_account_group_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_face_profile_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_facebook_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_github_circle_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_google_play_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_web_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xhdpi/ic_youtube_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_account_group_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_face_profile_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_facebook_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_github_circle_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_google_play_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_web_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxhdpi/ic_youtube_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_account_group_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_face_profile_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_facebook_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_github_circle_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_google_play_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_web_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_black_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_black_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_black_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_black_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_black_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_black_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_black_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_grey600_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_grey600_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_grey600_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_grey600_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_grey600_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_grey600_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_grey600_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_grey600_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_white_18dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_white_18dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_white_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_white_24dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_white_36dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_white_36dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/p32929/OfficeAbout/21f5c9b3c34a7c9cd3ca5b57f791c278d3108106/officeaboutlib/src/main/res/drawable-xxxhdpi/ic_youtube_white_48dp.png
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/layout/activity_office_about.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
13 |
14 |
21 |
22 |
29 |
30 |
37 |
38 |
46 |
47 |
54 |
55 |
62 |
63 |
70 |
71 |
78 |
79 |
86 |
87 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
104 |
105 |
106 |
107 |
108 |
109 |
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/layout/office_member.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
12 |
13 |
18 |
19 |
28 |
29 |
36 |
37 |
44 |
45 |
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/officeaboutlib/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | OfficeAboutLib
3 |
4 |
--------------------------------------------------------------------------------
/officeaboutlib/src/test/java/p32929/officeaboutlib/ExampleUnitTest.java:
--------------------------------------------------------------------------------
1 | package p32929.officeaboutlib;
2 |
3 | import org.junit.Test;
4 |
5 | import static org.junit.Assert.*;
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * @see Testing documentation
11 | */
12 | public class ExampleUnitTest {
13 | @Test
14 | public void addition_isCorrect() {
15 | assertEquals(4, 2 + 2);
16 | }
17 | }
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app', ':officeaboutlib'
2 |
--------------------------------------------------------------------------------