Skip to content

Commit 7d2325d

Browse files
author
CNCoderX
committed
new
0 parents  commit 7d2325d

163 files changed

Lines changed: 13626 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
## Java
2+
3+
*.class
4+
*.war
5+
*.ear
6+
hs_err_pid*
7+
8+
## Robovm
9+
/ios/robovm-build/
10+
11+
## GWT
12+
/html/war/
13+
/html/gwt-unitCache/
14+
.apt_generated/
15+
.gwt/
16+
gwt-unitCache/
17+
www-test/
18+
.gwt-tmp/
19+
20+
## Android Studio and Intellij and Android in general
21+
/android/libs/armeabi/
22+
/android/libs/armeabi-v7a/
23+
/android/libs/arm64-v8a/
24+
/android/libs/x86/
25+
/android/libs/x86_64/
26+
/android/gen/
27+
.idea/
28+
*.ipr
29+
*.iws
30+
*.iml
31+
/android/out/
32+
com_crashlytics_export_strings.xml
33+
34+
## Eclipse
35+
36+
.classpath
37+
.project
38+
.metadata/
39+
/android/bin/
40+
/core/bin/
41+
/desktop/bin/
42+
/html/bin/
43+
/ios/bin/
44+
/ios-moe/bin/
45+
*.tmp
46+
*.bak
47+
*.swp
48+
*~.nib
49+
.settings/
50+
.loadpath
51+
.externalToolBuilders/
52+
*.launch
53+
54+
## NetBeans
55+
56+
/nbproject/private/
57+
/android/nbproject/private/
58+
/core/nbproject/private/
59+
/desktop/nbproject/private/
60+
/html/nbproject/private/
61+
/ios/nbproject/private/
62+
/ios-moe/nbproject/private/
63+
64+
/build/
65+
/android/build/
66+
/core/build/
67+
/desktop/build/
68+
/html/build/
69+
/ios/build/
70+
/ios-moe/build/
71+
72+
/nbbuild/
73+
/android/nbbuild/
74+
/core/nbbuild/
75+
/desktop/nbbuild/
76+
/html/nbbuild/
77+
/ios/nbbuild/
78+
/ios-moe/nbbuild/
79+
80+
/dist/
81+
/android/dist/
82+
/core/dist/
83+
/desktop/dist/
84+
/html/dist/
85+
/ios/dist/
86+
/ios-moe/dist/
87+
88+
/nbdist/
89+
/android/nbdist/
90+
/core/nbdist/
91+
/desktop/nbdist/
92+
/html/nbdist/
93+
/ios/nbdist/
94+
/ios-moe/nbdist/
95+
96+
nbactions.xml
97+
nb-configuration.xml
98+
99+
## Gradle
100+
101+
/local.properties
102+
.gradle/
103+
gradle-app.setting
104+
/build/
105+
/android/build/
106+
/core/build/
107+
/desktop/build/
108+
/html/build/
109+
/ios/build/
110+
/ios-moe/build/
111+
112+
## OS Specific
113+
.DS_Store
114+
Thumbs.db

android/AndroidManifest.xml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.cncoderx.game.magictower"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="23" />
8+
9+
<uses-permission android:name="android.permission.INTERNET"/>
10+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
11+
12+
<application
13+
android:allowBackup="true"
14+
android:icon="@drawable/icon"
15+
android:label="@string/app_name"
16+
android:theme="@style/GdxTheme" >
17+
<activity
18+
android:name="com.cncoderx.game.magictower.AndroidLauncher"
19+
android:label="@string/app_name"
20+
android:screenOrientation="portrait"
21+
android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
22+
<intent-filter>
23+
<action android:name="android.intent.action.MAIN" />
24+
<category android:name="android.intent.category.LAUNCHER" />
25+
</intent-filter>
26+
</activity>
27+
28+
<meta-data
29+
android:name="com.google.android.gms.version"
30+
android:value="@integer/google_play_services_version" />
31+
32+
<activity
33+
android:name="com.google.android.gms.ads.AdActivity"
34+
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
35+
android:theme="@android:style/Theme.Translucent" />
36+
</application>
37+
38+
</manifest>

android/android-release.apk

4.08 MB
Binary file not shown.

android/assets/access.mp3

1.83 KB
Binary file not shown.

android/assets/attack01.mp3

1.28 KB
Binary file not shown.

android/assets/attack02.mp3

1.53 KB
Binary file not shown.

android/assets/battle_bg.jpg

34 KB
Loading

android/assets/bg.jpg

128 KB
Loading

android/assets/bgm01.mp3

175 KB
Binary file not shown.

android/assets/bgm02.mp3

38.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)