-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First commit of android application Numblitz
- Loading branch information
0 parents
commit 41e71a4
Showing
87 changed files
with
2,586 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/> | ||
<classpathentry kind="lib" path="C:/Users/Darrell/adt-bundle-windows-x86_64-20130219/sdk/extras/google/admob_ads_sdk/GoogleAdMobAdsSdk-6.4.1.jar"/> | ||
<classpathentry kind="output" path="bin/classes"/> | ||
</classpath> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>NumBlitx</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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="app.dj" | ||
android:versionCode="1" | ||
android:versionName="1.0" > | ||
|
||
<uses-sdk android:minSdkVersion="10" /> | ||
|
||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
<uses-permission android:name="android.permission.WAKE_LOCK" /> | ||
|
||
<application | ||
android:name="MyReferences" | ||
android:debuggable="true" | ||
android:icon="@drawable/ic_bydj" | ||
android:label="@string/app_name" > | ||
<activity | ||
android:name="com.google.ads.AdActivity" | ||
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode" /> | ||
<activity | ||
android:name=".Splash" | ||
android:screenOrientation="landscape" | ||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".Chat" | ||
android:screenOrientation="landscape" | ||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > | ||
<intent-filter> | ||
<action android:name="app.dj.CHAT" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".Colorchooser" | ||
android:screenOrientation="landscape" | ||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > | ||
<intent-filter> | ||
<action android:name="app.dj.COLORCHOOSER" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".Game" | ||
android:screenOrientation="landscape" | ||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > | ||
<intent-filter> | ||
<action android:name="app.dj.GAME" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".Multiplayer" | ||
android:screenOrientation="landscape" | ||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > | ||
<intent-filter> | ||
<action android:name="app.dj.MULTIPLAYER" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".NumPlayer" | ||
android:screenOrientation="landscape" | ||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > | ||
<intent-filter> | ||
<action android:name="app.dj.NUMPLAYER" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".PlayerSearch" | ||
android:screenOrientation="landscape" | ||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > | ||
<intent-filter> | ||
<action android:name="app.dj.PLAYERSEARCH" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".MainActivity" | ||
android:screenOrientation="landscape" | ||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > | ||
<intent-filter> | ||
<action android:name="app.dj.MAINACTIVITY" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".GameStats" | ||
android:screenOrientation="landscape" | ||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > | ||
<intent-filter> | ||
<action android:name="app.dj.GAMESTATS" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
</application> | ||
|
||
</manifest> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="app.dj" | ||
android:versionCode="1" | ||
android:versionName="1.0" > | ||
|
||
<uses-sdk android:minSdkVersion="10" /> | ||
|
||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
<uses-permission android:name="android.permission.WAKE_LOCK" /> | ||
|
||
<application | ||
android:name="MyReferences" | ||
android:debuggable="true" | ||
android:icon="@drawable/ic_bydj" | ||
android:label="@string/app_name" > | ||
<activity | ||
android:name="com.google.ads.AdActivity" | ||
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode" /> | ||
<activity | ||
android:name=".Splash" | ||
android:screenOrientation="landscape" | ||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".Chat" | ||
android:screenOrientation="landscape" | ||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > | ||
<intent-filter> | ||
<action android:name="app.dj.CHAT" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".Colorchooser" | ||
android:screenOrientation="landscape" | ||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > | ||
<intent-filter> | ||
<action android:name="app.dj.COLORCHOOSER" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".Game" | ||
android:screenOrientation="landscape" | ||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > | ||
<intent-filter> | ||
<action android:name="app.dj.GAME" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".Multiplayer" | ||
android:screenOrientation="landscape" | ||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > | ||
<intent-filter> | ||
<action android:name="app.dj.MULTIPLAYER" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".NumPlayer" | ||
android:screenOrientation="landscape" | ||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > | ||
<intent-filter> | ||
<action android:name="app.dj.NUMPLAYER" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".PlayerSearch" | ||
android:screenOrientation="landscape" | ||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > | ||
<intent-filter> | ||
<action android:name="app.dj.PLAYERSEARCH" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".MainActivity" | ||
android:screenOrientation="landscape" | ||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > | ||
<intent-filter> | ||
<action android:name="app.dj.MAINACTIVITY" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".GameStats" | ||
android:screenOrientation="landscape" | ||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > | ||
<intent-filter> | ||
<action android:name="app.dj.GAMESTATS" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
</application> | ||
|
||
</manifest> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# cache for current jar dependecy. DO NOT EDIT. | ||
# format is <lastModified> <length> <SHA-1> <path> | ||
# Encoding is UTF-8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/** Automatically generated file. DO NOT MODIFY */ | ||
package app.dj; | ||
|
||
public final class BuildConfig { | ||
public final static boolean DEBUG = true; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# To enable ProGuard in your project, edit project.properties | ||
# to define the proguard.config property as described in that file. | ||
# | ||
# Add project specific ProGuard rules here. | ||
# By default, the flags in this file are appended to flags specified | ||
# in ${sdk.dir}/tools/proguard/proguard-android.txt | ||
# You can edit the include path and order by changing the ProGuard | ||
# include property in project.properties. | ||
# | ||
# For more details, see | ||
# http://developer.android.com/guide/developing/tools/proguard.html | ||
|
||
# Add any project specific keep options here: | ||
|
||
# If your project uses WebView with JS, uncomment the following | ||
# and specify the fully qualified class name to the JavaScript interface | ||
# class: | ||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview { | ||
# public *; | ||
#} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# 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 edit | ||
# "ant.properties", and override values to adapt the script to your | ||
# project structure. | ||
# | ||
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): | ||
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt | ||
|
||
# Project target. | ||
target=android-17 |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent" | ||
xmlns:android="http://schemas.android.com/apk/res/android" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<LinearLayout android:orientation="vertical" android:id="@id/color" android:layout_width="fill_parent" android:layout_height="fill_parent" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<LinearLayout android:orientation="vertical" android:id="@id/coloradview" android:layout_width="fill_parent" android:layout_height="wrap_content" /> | ||
<TextView android:textAppearance="?android:textAppearanceLarge" android:gravity="center" android:id="@id/tvchose" android:layout_width="fill_parent" android:layout_height="0.0dip" android:text="Choose a Team" android:layout_weight="75.0" /> | ||
<LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="0.0dip" android:layout_weight="25.0"> | ||
<Button android:id="@id/byellow" android:layout_width="0.0dip" android:layout_height="fill_parent" android:text="Yellow" android:layout_weight="25.0" /> | ||
<Button android:id="@id/bpurple" android:layout_width="0.0dip" android:layout_height="fill_parent" android:text="Purple" android:layout_weight="25.0" /> | ||
<Button android:id="@id/borange" android:layout_width="0.0dip" android:layout_height="fill_parent" android:text="Orange" android:layout_weight="25.0" /> | ||
<Button android:id="@id/bgreen" android:layout_width="0.0dip" android:layout_height="fill_parent" android:text="Green" android:layout_weight="25.0" /> | ||
</LinearLayout> | ||
</LinearLayout> |
Oops, something went wrong.