Skip to content

Commit

Permalink
Initializing Repository
Browse files Browse the repository at this point in the history
  • Loading branch information
hmarcelodn committed Jul 15, 2015
0 parents commit 1a2e273
Show file tree
Hide file tree
Showing 224 changed files with 6,795 additions and 0 deletions.
9 changes: 9 additions & 0 deletions FuturamaGame/.classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?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 exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
33 changes: 33 additions & 0 deletions FuturamaGame/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>FuturamaGame</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>
4 changes: 4 additions & 0 deletions FuturamaGame/.settings/org.eclipse.jdt.core.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.source=1.6
40 changes: 40 additions & 0 deletions FuturamaGame/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.lslutnfra.futuramagame"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="19" />

<application
android:allowBackup="true"
android:icon="@drawable/bender_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.lslutnfra.futuramagame.presentation.activity.SplashActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.lslutnfra.futuramagame.presentation.activity.StartActivity"
android:label="@string/title_activity_start" >
</activity>
<activity
android:name="com.lslutnfra.futuramagame.presentation.activity.RankingActivity"
android:label="@string/title_activity_ranking" >
</activity>
<activity
android:name="com.lslutnfra.futuramagame.presentation.activity.ScenarioActivity"
android:label="@string/app_name" >
</activity>

</application>

</manifest>
Binary file added FuturamaGame/assets/frbold.ttf
Binary file not shown.
Binary file added FuturamaGame/assets/frtitle.ttf
Binary file not shown.
40 changes: 40 additions & 0 deletions FuturamaGame/bin/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.lslutnfra.futuramagame"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="19" />

<application
android:allowBackup="true"
android:icon="@drawable/bender_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.lslutnfra.futuramagame.presentation.activity.SplashActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.lslutnfra.futuramagame.presentation.activity.StartActivity"
android:label="@string/title_activity_start" >
</activity>
<activity
android:name="com.lslutnfra.futuramagame.presentation.activity.RankingActivity"
android:label="@string/title_activity_ranking" >
</activity>
<activity
android:name="com.lslutnfra.futuramagame.presentation.activity.ScenarioActivity"
android:label="@string/app_name" >
</activity>

</application>

</manifest>
Binary file added FuturamaGame/bin/FuturamaGame.apk
Binary file not shown.
Loading

0 comments on commit 1a2e273

Please sign in to comment.