In this post, I will show you how to Create Digital Signature in Android. Project Structure: Create a new Project in Eclipse/Android Studio with the required Specifications. Codes: AndroidManifest.xml Don't forget to add the following permission in your manifest file <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission> color.xml Create color.xml and replace it with the following code <resources> <color name="ColorPrimaryDark">#3367d6</color> <color name="ColorPrimary">#4285f4</color> </resources> strings.xml Create strings.xml and replace it with the following code <resources> <string name="app_name">Digital Signature</string> <string name="hello_world">Hello world!</string> <string name="action_settings">Settings</string> <string name="hint_sign">Get Signature</st...