Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
dream
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
dream
Commits
62106fcb
Commit
62106fcb
authored
Mar 09, 2012
by
george dagkakis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1st
parents
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
151 additions
and
0 deletions
+151
-0
MobileEventGuide/.classpath
MobileEventGuide/.classpath
+8
-0
MobileEventGuide/.project
MobileEventGuide/.project
+33
-0
MobileEventGuide/AndroidManifest.xml
MobileEventGuide/AndroidManifest.xml
+24
-0
MobileEventGuide/proguard.cfg
MobileEventGuide/proguard.cfg
+40
-0
MobileEventGuide/project.properties
MobileEventGuide/project.properties
+11
-0
MobileEventGuide/res/drawable-hdpi/ic_launcher.png
MobileEventGuide/res/drawable-hdpi/ic_launcher.png
+0
-0
MobileEventGuide/res/drawable-ldpi/ic_launcher.png
MobileEventGuide/res/drawable-ldpi/ic_launcher.png
+0
-0
MobileEventGuide/res/drawable-mdpi/ic_launcher.png
MobileEventGuide/res/drawable-mdpi/ic_launcher.png
+0
-0
MobileEventGuide/res/layout/main.xml
MobileEventGuide/res/layout/main.xml
+13
-0
MobileEventGuide/res/values/strings.xml
MobileEventGuide/res/values/strings.xml
+8
-0
MobileEventGuide/src/mobile/event/org/MobileEventGuide.java
MobileEventGuide/src/mobile/event/org/MobileEventGuide.java
+14
-0
No files found.
MobileEventGuide/.classpath
0 → 100644
View file @
62106fcb
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry
kind=
"src"
path=
"src"
/>
<classpathentry
kind=
"src"
path=
"gen"
/>
<classpathentry
kind=
"con"
path=
"com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"
/>
<classpathentry
kind=
"con"
path=
"com.android.ide.eclipse.adt.LIBRARIES"
/>
<classpathentry
kind=
"output"
path=
"bin/classes"
/>
</classpath>
MobileEventGuide/.project
0 → 100644
View file @
62106fcb
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>
MobileEventGuide
</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>
com.android.ide.eclipse.adt.ResourceManagerBuilder
</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>
com.android.ide.eclipse.adt.PreCompilerBuilder
</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>
org.eclipse.jdt.core.javabuilder
</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>
com.android.ide.eclipse.adt.ApkBuilder
</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>
com.android.ide.eclipse.adt.AndroidNature
</nature>
<nature>
org.eclipse.jdt.core.javanature
</nature>
</natures>
</projectDescription>
MobileEventGuide/AndroidManifest.xml
0 → 100644
View file @
62106fcb
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"mobile.event.org"
android:versionCode=
"1"
android:versionName=
"1.0"
>
<uses-sdk
android:minSdkVersion=
"7"
/>
<application
android:icon=
"@drawable/ic_launcher"
android:label=
"@string/app_name"
>
<activity
android:name=
".MobileEventGuide"
android:label=
"@string/app_name"
>
<intent-filter>
<action
android:name=
"android.intent.action.MAIN"
/>
<category
android:name=
"android.intent.category.LAUNCHER"
/>
</intent-filter>
</activity>
</application>
</manifest>
\ No newline at end of file
MobileEventGuide/proguard.cfg
0 → 100644
View file @
62106fcb
-optimizationpasses 5
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-dontpreverify
-verbose
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
-keep public class * extends android.app.Activity
-keep public class * extends android.app.Application
-keep public class * extends android.app.Service
-keep public class * extends android.content.BroadcastReceiver
-keep public class * extends android.content.ContentProvider
-keep public class * extends android.app.backup.BackupAgentHelper
-keep public class * extends android.preference.Preference
-keep public class com.android.vending.licensing.ILicensingService
-keepclasseswithmembernames class * {
native <methods>;
}
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet);
}
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet, int);
}
-keepclassmembers class * extends android.app.Activity {
public void *(android.view.View);
}
-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}
-keep class * implements android.os.Parcelable {
public static final android.os.Parcelable$Creator *;
}
MobileEventGuide/project.properties
0 → 100644
View file @
62106fcb
# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must be checked in Version Control Systems.
#
# To customize properties used by the Ant build system use,
# "ant.properties", and override values to adapt the script to your
# project structure.
# Project target.
target
=
Google Inc.:Google APIs:7
MobileEventGuide/res/drawable-hdpi/ic_launcher.png
0 → 100644
View file @
62106fcb
4.05 KB
MobileEventGuide/res/drawable-ldpi/ic_launcher.png
0 → 100644
View file @
62106fcb
1.68 KB
MobileEventGuide/res/drawable-mdpi/ic_launcher.png
0 → 100644
View file @
62106fcb
2.51 KB
MobileEventGuide/res/layout/main.xml
0 → 100644
View file @
62106fcb
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"fill_parent"
android:layout_height=
"fill_parent"
android:orientation=
"vertical"
>
<TextView
android:layout_width=
"fill_parent"
android:layout_height=
"wrap_content"
android:text=
"@string/hello"
/>
</LinearLayout>
\ No newline at end of file
MobileEventGuide/res/values/strings.xml
0 → 100644
View file @
62106fcb
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string
name=
"hello"
>
Hello World, MobileEventGuide!
</string>
<string
name=
"app_name"
>
MobileEventGuide
</string>
</resources>
\ No newline at end of file
MobileEventGuide/src/mobile/event/org/MobileEventGuide.java
0 → 100644
View file @
62106fcb
package
mobile.event.org
;
import
android.app.Activity
;
import
android.os.Bundle
;
public
class
MobileEventGuide
extends
Activity
{
/** Called when the activity is first created. */
@Override
public
void
onCreate
(
Bundle
savedInstanceState
)
{
super
.
onCreate
(
savedInstanceState
);
setContentView
(
R
.
layout
.
main
);
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment