From 57afef394d899277332ca4ed42b23bd50f0ccf8d Mon Sep 17 00:00:00 2001 From: peli0101 Date: Sat, 17 Jan 2009 08:37:19 +0000 Subject: [PATCH] OI Safe: Add ant build file and readme.txt. git-svn-id: http://openintents.googlecode.com/svn/trunk/Safe@1745 72b678ce-9140-0410-bee8-679b907dd61a --- build.properties | 56 ++++ build.xml | 399 +++++++++++++++++++++++++++ readme.txt | 35 +++ template of build-private.properties | 4 + 4 files changed, 494 insertions(+) create mode 100644 build.properties create mode 100644 build.xml create mode 100644 readme.txt create mode 100644 template of build-private.properties diff --git a/build.properties b/build.properties new file mode 100644 index 0000000..c4eb29b --- /dev/null +++ b/build.properties @@ -0,0 +1,56 @@ +##### Notice: +# +# Ant properties are immutable: +# whoever sets a property first freezes +# it for the rest of the build. +# +# You can therefore override the following properties +# either through the command line or within Eclipse: +# +# -------------- +# In Eclipse: +# * Open "Window" / "Preferences..." +# * Select "Ant" / "Runtime" +# * Choose tab "Properties" +# * Click "Add Property..." for the following: +# +# * - Name: "android.sdk" +# - value: [path to sdk, e.g. C:\android-sdk_m5-rc15_windows] +# -------------< +# Alternatively, you can provide the property through the +# command line: +# * ant -Dandroid.sdk=C:\android-sdk_m5-rc15_windows + + +#################################### +# Global properties +# + +#################################### +# OS specific properties +# + +# android.sdk : path to Android SDK + +### Windows +android.sdk=C:\\Program Files\\android\\android-sdk-windows-1.0_r1 +#android.sdk=C:\\android-sdk-windows-1.0_r1 +android.aapt=aapt.exe +android.aidl=aidl.exe +android.dx=dx.bat +android.jar=android.jar + +proguard.jar=D:\\extern\\proguard4.2\\proguard4.2\\lib\\proguard.jar + + +#usually defined in build-private.properties +storepass=xxx +cert-alias=Safe +keystore=Safe.ks + +### Linux +# android.sdk=/opt/tools/javame/android-sdk_m5-rc15_linux-x86 +# android.aapt=aapt +# android.aidl=aidl +# android.dx=dx +# android.jar=android.jar diff --git a/build.xml b/build.xml new file mode 100644 index 0000000..e073ea0 --- /dev/null +++ b/build.xml @@ -0,0 +1,399 @@ + + + + + + + + + + + + + + + + + Using Android SDK directory ${sdk-folder} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + purging .bak files + + + + + + + + Generating R.java / Manifest.java from the resources... + + + + + + + + + + + + + + + + + Compiling aidl files into Java classes... + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Converting compiled files and external libraries into ${outdir}/${dex-file}... + + + + + + + + + + + Packaging resources and assets... + + + + + + + + + + + + + + + + + + + Packaging resources... + + + + + + + + + + + + + + + + + + + + + + + + + + Packaging ${out-debug-package}, and signing it with a debug key... + + + + + + + + + + + + + + + + Packaging ${out-unsigned-package} for release... + + + + + + + + + + + + + + + + + + Installing ${out-debug-package} onto default emulator... + + + + + + + + Installing ${out-debug-package} onto default emulator... + + + + + + + + + + + Installing ${out-signed-package} onto default emulator... + + + + + + + + Reinstalling ${out-signed-package} onto default emulator... + + + + + + + + + + Uninstalling ${application-package} from the default emulator... + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/readme.txt b/readme.txt new file mode 100644 index 0000000..0636126 --- /dev/null +++ b/readme.txt @@ -0,0 +1,35 @@ + **************************************************************************** + * Copyright (C) 2007-2009 Steven Osborn - http://steven.bitsetters.com * + * and Randy McEoin (and others, see Help) * + * * + * Licensed under the Apache License, Version 2.0 (the "License"); * + * you may not use this file except in compliance with the License. * + * You may obtain a copy of the License at * + * * + * http://www.apache.org/licenses/LICENSE-2.0 * + * * + * Unless required by applicable law or agreed to in writing, software * + * distributed under the License is distributed on an "AS IS" BASIS, * + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * + * See the License for the specific language governing permissions and * + * limitations under the License. * + **************************************************************************** + + +OI Safe keeps all your private data encrypted. + +The core application stores your passwords. Other applications can encrypt +or decrypt data, and get or set passwords by connecting to OI Safe. + +To obtain the current release, visit + http://www.openintents.org + +--------------------------------------------------------- +release: 1.0.0 +date: 2009-?? + +- First public release on Android SDK 1.0. + +Features: +- Store encrypted passwords in categories. +- Open intents: encypt, decrypt, get & set password. diff --git a/template of build-private.properties b/template of build-private.properties new file mode 100644 index 0000000..11163f1 --- /dev/null +++ b/template of build-private.properties @@ -0,0 +1,4 @@ +proguard.jar=d:\\extern\\proguard4.2\\proguard4.2\\lib\\proguard.jar +storepass=xxx +keystore=c:\\Programme\\Java\\jdk1.5.0_04\\bin\\Safe.ks +cert-alias=safe \ No newline at end of file -- 2.50.1