├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── markdown-navigator.xml ├── markdown-navigator │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── sampleapp ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── opencraft │ │ └── gcherubini │ │ └── typeyourpinsample │ │ └── MainActivity.java │ └── res │ ├── drawable │ └── fundo.png │ ├── layout │ └── activity_main.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 ├── settings.gradle └── typeyourpinlibrary ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src └── main ├── AndroidManifest.xml ├── java └── com │ └── opencraft │ └── gcherubini │ └── typeyourpin │ ├── TypeYourPinInterface.java │ └── TypeYourPinLayout.java └── res ├── drawable ├── type_your_pin_rounded_shape_filled.xml └── type_your_pin_rounded_shape_transparent.xml └── values ├── dimens.xml ├── integers.xml └── strings.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /sampleapp/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sampleapp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/sampleapp/build.gradle -------------------------------------------------------------------------------- /sampleapp/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/sampleapp/proguard-rules.pro -------------------------------------------------------------------------------- /sampleapp/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/sampleapp/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sampleapp/src/main/java/com/opencraft/gcherubini/typeyourpinsample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/sampleapp/src/main/java/com/opencraft/gcherubini/typeyourpinsample/MainActivity.java -------------------------------------------------------------------------------- /sampleapp/src/main/res/drawable/fundo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/sampleapp/src/main/res/drawable/fundo.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/sampleapp/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/sampleapp/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/sampleapp/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/sampleapp/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/sampleapp/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/sampleapp/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/sampleapp/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/sampleapp/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/sampleapp/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/sampleapp/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/sampleapp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sampleapp/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/sampleapp/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sampleapp/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/sampleapp/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sampleapp/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/sampleapp/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':sampleapp', ':typeyourpinlibrary' 2 | -------------------------------------------------------------------------------- /typeyourpinlibrary/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /typeyourpinlibrary/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/typeyourpinlibrary/build.gradle -------------------------------------------------------------------------------- /typeyourpinlibrary/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/typeyourpinlibrary/proguard-rules.pro -------------------------------------------------------------------------------- /typeyourpinlibrary/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/typeyourpinlibrary/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /typeyourpinlibrary/src/main/java/com/opencraft/gcherubini/typeyourpin/TypeYourPinInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/typeyourpinlibrary/src/main/java/com/opencraft/gcherubini/typeyourpin/TypeYourPinInterface.java -------------------------------------------------------------------------------- /typeyourpinlibrary/src/main/java/com/opencraft/gcherubini/typeyourpin/TypeYourPinLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/typeyourpinlibrary/src/main/java/com/opencraft/gcherubini/typeyourpin/TypeYourPinLayout.java -------------------------------------------------------------------------------- /typeyourpinlibrary/src/main/res/drawable/type_your_pin_rounded_shape_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/typeyourpinlibrary/src/main/res/drawable/type_your_pin_rounded_shape_filled.xml -------------------------------------------------------------------------------- /typeyourpinlibrary/src/main/res/drawable/type_your_pin_rounded_shape_transparent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/typeyourpinlibrary/src/main/res/drawable/type_your_pin_rounded_shape_transparent.xml -------------------------------------------------------------------------------- /typeyourpinlibrary/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/typeyourpinlibrary/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /typeyourpinlibrary/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/typeyourpinlibrary/src/main/res/values/integers.xml -------------------------------------------------------------------------------- /typeyourpinlibrary/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenCraft/TypeYourPin/HEAD/typeyourpinlibrary/src/main/res/values/strings.xml --------------------------------------------------------------------------------