Commit 508b50d87d3a48a908df3fea4c473c1b6be8aa7e
1 parent
4a1f3570
Exists in
master
and in
5 other branches
Incluindo arquivos do projeto android para guardar no svn
Showing
4 changed files
with
65 additions
and
0 deletions
Show diff stats
| ... | ... | @@ -0,0 +1,8 @@ |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | +<classpath> | |
| 3 | + <classpathentry kind="src" path="src"/> | |
| 4 | + <classpathentry kind="src" path="gen"/> | |
| 5 | + <classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/> | |
| 6 | + <classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/> | |
| 7 | + <classpathentry kind="output" path="bin/classes"/> | |
| 8 | +</classpath> | ... | ... |
| ... | ... | @@ -0,0 +1,23 @@ |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | |
| 2 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| 3 | + package="br.com.bb.pw3270" | |
| 4 | + android:versionCode="1" | |
| 5 | + android:versionName="1.0" > | |
| 6 | + | |
| 7 | + <uses-sdk android:minSdkVersion="15" /> | |
| 8 | + | |
| 9 | + <application | |
| 10 | + android:icon="@drawable/ic_launcher" | |
| 11 | + android:label="@string/app_name" > | |
| 12 | + <activity | |
| 13 | + android:name=".PW3270Activity" | |
| 14 | + android:label="@string/app_name" > | |
| 15 | + <intent-filter> | |
| 16 | + <action android:name="android.intent.action.MAIN" /> | |
| 17 | + | |
| 18 | + <category android:name="android.intent.category.LAUNCHER" /> | |
| 19 | + </intent-filter> | |
| 20 | + </activity> | |
| 21 | + </application> | |
| 22 | + | |
| 23 | +</manifest> | |
| 0 | 24 | \ No newline at end of file | ... | ... |
| ... | ... | @@ -0,0 +1,20 @@ |
| 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 | +#} | ... | ... |
| ... | ... | @@ -0,0 +1,14 @@ |
| 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-15 | ... | ... |