Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gradle support, Workspace cleanup, Nickname persisting #5

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
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
8 changes: 0 additions & 8 deletions .classpath

This file was deleted.

18 changes: 16 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,16 @@
/bin
/LICENSE.md
bin
build
gradle
gradlew
gradlew.bat
.gradle
.project
.settings
local.properties
.classpath
project.properties
proguard-project.txt
gen
*.iml
build.xml
.idea
33 changes: 0 additions & 33 deletions .project

This file was deleted.

4 changes: 0 additions & 4 deletions .settings/org.eclipse.jdt.core.prefs

This file was deleted.

2 changes: 1 addition & 1 deletion AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
android:targetSdkVersion="18" />

<uses-permission android:name="android.permission.VIBRATE" />
<supports-screens android:normalScreens="true" android:smallScreens="true" android:largeScreens="true" android:resizeable="true" android:anyDensity="true" android:xlargeScreens="true"/>
Expand Down
107 changes: 0 additions & 107 deletions bin/AndroidManifest.xml

This file was deleted.

Binary file removed bin/classes/org/blockinger/game/BlockBoardView.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/BuildConfig.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/R$array.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/R$attr.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/R$color.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/R$dimen.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/R$drawable.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/R$id.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/R$integer.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/R$layout.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/R$menu.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/R$raw.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/R$string.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/R$style.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/R$styleable.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/R$xml.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/R.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/Row.class
Binary file not shown.
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/Square.class
Binary file not shown.
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/db/Score.class
Binary file not shown.
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/pieces/IPiece.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/pieces/JPiece.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/pieces/LPiece.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/pieces/OPiece.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/pieces/Piece.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/pieces/SPiece.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/pieces/TPiece.class
Binary file not shown.
Binary file removed bin/classes/org/blockinger/game/pieces/ZPiece.class
Binary file not shown.
40 changes: 40 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
apply plugin: 'android'

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.5.+'
}
}

repositories {
mavenCentral()
}

dependencies {
compile 'com.android.support:support-v4:18.0.+'
}

android {
compileSdkVersion 18
buildToolsVersion "18.0.1"

sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
}

defaultConfig {
minSdkVersion 8
targetSdkVersion 18
}
}
6 changes: 0 additions & 6 deletions gen/org/blockinger/game/BuildConfig.java

This file was deleted.

Loading