├── .gitignore ├── LICENSE.md ├── LibraryRateMe ├── .classpath ├── .project ├── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── libs │ └── .keep ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res │ ├── layout │ │ ├── rateme__dialog_message.xml │ │ ├── rateme__dialog_title.xml │ │ ├── rateme__feedback_dialog_message.xml │ │ └── rateme__feedback_dialog_title.xml │ ├── values-de │ │ └── strings.xml │ ├── values-es │ │ └── strings.xml │ ├── values-pt-rBR │ │ └── strings.xml │ ├── values-ru │ │ └── values.xml │ └── values │ │ ├── dimen.xml │ │ └── strings.xml └── src │ └── com │ └── androidsx │ └── rateme │ ├── FeedbackDialog.java │ ├── OnRatingListener.java │ ├── RateMeDialog.java │ └── RateMeDialogTimer.java ├── README.md ├── SampleProject ├── .classpath ├── .project ├── AndroidManifest.xml ├── build.gradle ├── ic_launcher-web.png ├── libs │ └── android-support-v4.jar ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res │ ├── layout │ │ └── sample_project.xml │ ├── menu │ │ └── rateme.xml │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── androidsx │ └── rateme │ └── demo1 │ └── SampleProjectMainActivity.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── maven_push.gradle ├── readme-images ├── rate-me-dialog-in-helium.png └── rate-me-dialog-in-pixable.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | # built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # files for the dex VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # generated files 12 | bin/ 13 | gen/ 14 | .settings/ 15 | 16 | # metadata 17 | .metadata 18 | 19 | # rtf 20 | .gitignore.rtf 21 | 22 | # the Google Play keystore 23 | keystore-android 24 | 25 | # some file created by Mac 26 | .DS_Store 27 | 28 | # images-Readme 29 | images-readme/ 30 | 31 | # Android studio 32 | .idea 33 | *.iml 34 | local.properties 35 | build/ 36 | 37 | # Gradle 38 | .gradle 39 | gradle.properties 40 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Androidsx 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. -------------------------------------------------------------------------------- /LibraryRateMe/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /LibraryRateMe/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | LibraryRateMe 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /LibraryRateMe/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LibraryRateMe/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | 3 | repositories { 4 | mavenCentral() 5 | } 6 | 7 | android { 8 | compileSdkVersion 22 9 | buildToolsVersion "22.0.1" 10 | resourcePrefix "rateme__" 11 | 12 | defaultConfig { 13 | minSdkVersion 11 14 | targetSdkVersion 22 15 | versionName project.VERSION_NAME 16 | versionCode Integer.parseInt(project.VERSION_CODE) 17 | } 18 | 19 | sourceSets { 20 | main { 21 | manifest.srcFile 'AndroidManifest.xml' 22 | java.srcDirs = ['src'] 23 | resources.srcDirs = ['src'] 24 | aidl.srcDirs = ['src'] 25 | renderscript.srcDirs = ['src'] 26 | res.srcDirs = ['res'] 27 | assets.srcDirs = ['assets'] 28 | } 29 | } 30 | 31 | lintOptions { 32 | abortOnError true 33 | } 34 | } 35 | // Used to push in maven 36 | apply from: '../maven_push.gradle' 37 | -------------------------------------------------------------------------------- /LibraryRateMe/gradle.properties: -------------------------------------------------------------------------------- 1 | POM_NAME=Rate Me 2 | POM_ARTIFACT_ID=rate-me 3 | POM_PACKAGING=aar 4 | -------------------------------------------------------------------------------- /LibraryRateMe/libs/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androidsx/rate-me/a779706454ba585a09110745ac3035f28920524a/LibraryRateMe/libs/.keep -------------------------------------------------------------------------------- /LibraryRateMe/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /LibraryRateMe/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /LibraryRateMe/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-22 15 | android.library=true 16 | -------------------------------------------------------------------------------- /LibraryRateMe/res/layout/rateme__dialog_message.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 16 | 17 | 28 | 29 | 34 | 35 | 41 | 42 | 58 | 59 | 60 | 61 | 66 | 67 |