Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry exported="true" 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="src" path="src"/>
<classpathentry kind="src" path="gen"/>
<classpathentry kind="output" path="bin/classes"/>
</classpath>
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#################

*.pydevproject
.project
.metadata
bin/
tmp/
Expand All @@ -12,7 +11,6 @@ tmp/
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath

Expand Down
44 changes: 44 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Dark Scorpion Slot</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>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.pde.PluginNature</nature>
</natures>
</projectDescription>
4 changes: 2 additions & 2 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.as.slotmachine"
android:versionCode="1"
android:versionName="1.3" android:installLocation="auto">
android:versionName="1.4" android:installLocation="auto">

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

<application
android:icon="@drawable/ic_launcher"
Expand Down
6 changes: 0 additions & 6 deletions gen/com/as/slotmachine/BuildConfig.java

This file was deleted.

83 changes: 0 additions & 83 deletions gen/com/as/slotmachine/R.java

This file was deleted.

2 changes: 1 addition & 1 deletion project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt

# Project target.
target=android-10
target=android-19
26 changes: 13 additions & 13 deletions res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<resources>
<string name="app_name">Игровой Автомат</string>
<string name="title_activity_main">Фруктовый автомат</string>
<string name="ImageDescription">Descript</string>
<color name="bgrColor">#1088F1</color>
<string name="btnBet">Ставка</string>
<string name="btnStart">Запустить автомат</string>
<string name="wordBalance">Баланс: </string>
<string name="Menu_AddMoney">Получить деньги</string>
<string name="betUp">+</string>
<string name="betDown">-</string>
<resources>

<string name="app_name">Игровой Автомат</string>
<string name="title_activity_main">Фруктовый автомат</string>
<string name="ImageDescription">Descript</string>
<color name="bgrColor">#1088F1</color>
<string name="btnBet">Ставка</string>
<string name="btnStart">Запустить автомат</string>
<string name="wordBalance">Баланс: </string>
<string name="Menu_AddMoney">Получить деньги</string>
<string name="betUp">+</string>
<string name="betDown">-</string>

</resources>
Loading