Simple Notepad Application for Android OS
Rev. | Zeit | Autor | Nachricht |
---|---|---|---|
c8b7711 | 2019-05-05 01:31:33 | Masahiko, SAWAI | master Added content description to ImageView. |
44da989 | 2019-05-05 00:28:05 | Masahiko, SAWAI | Updated the app version from 1.0.17 to 1.0.18 |
ef00c74 | 2019-05-05 00:10:01 | Masahiko, SAWAI | Added content description to ImageView. |
724d006 | 2019-05-04 23:35:08 | Masahiko, SAWAI | Remove DB optimize background service. |
0660e31 | 2019-02-26 11:51:08 | Masahiko, SAWAI | Updated the app version from 1.0.16 to 1.0.17 |
e74937f | 2019-02-26 11:39:16 | Masahiko, SAWAI | Fixed a lock title dialog bug. |
7468004 | 2019-02-06 18:16:49 | Masahiko, SAWAI | Updated the app version from 1.0.15 to 1.0.16 |
c5b496e | 2019-02-06 17:19:15 | Masahiko, SAWAI | Changed targetSdkVersion |
f2c76bd | 2019-02-06 17:18:27 | Masahiko, SAWAI | Removed some message resource not in use. |
ffd0a18 | 2019-02-06 14:59:05 | Masahiko, SAWAI | Added note defailt font size entries. |
Name | Rev. | Zeit | Autor | Nachricht |
---|---|---|---|---|
master | c8b7711 | 2019-05-05 01:31:33 | Masahiko, SAWAI | Added content description t... |
note-uuid | 5a120d6 | 2013-07-01 19:01:45 | Masahiko, SAWAI | ドキュメントを更新 |
notepad-app =========== Simple Notepad is a simple notepad application for Android. The following functions are supported. * Add new note from template * Searching note * Creating the shortcut to a note This software has the following features. * Hardware keyboard operation * No advertisement * Open source Build Targets ============= http://maven-android-plugin-m2site.googlecode.com/svn/plugin-info.html * mvn compile - compile sources. * mvn package - build apk package. * mvn clean - cleaning generated files. * mvn install - install packages to maven local repository. * mvn android:deploy - install apk to device or emulator. * mvn android:generate-sources !! Release Build Define following properties in 'android-release' profile. * sign.keystore * sign.alias * sign.storepass * sign.keypass Set up profile in ~/.m2/settings.xml ------------------------------------------------------------ <?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd" > <profiles> <profile> <id>android-release</id> <properties> <sign.keystore>some/keystore/path/hello.keystore</sign.keystore> <sign.storepass>hello.keystore.pass</sign.storepass> <sign.alias>hello</sign.alias> <sign.keypass>hello.pass</sign.keypass> </properties> </profile> </profiles> </settings> ------------------------------------------------------------