Skip to content

Commit d373561

Browse files
committed
Switch to gradle! Update dependencies! Use new maps!
1 parent fff516f commit d373561

File tree

553 files changed

+279
-34746
lines changed

Some content is hidden

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

553 files changed

+279
-34746
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ classes/
77
.DS_Store
88
.idea
99
local.properties
10+
*.iml
1011
*.iws
1112
projectFilesBackup/
12-
1313
project.properties
14+
.gradle

FareBot.iml

-53
This file was deleted.

FareBot.ipr

-242
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# FareBot
22

3-
View your remaining balance, recent trips, and other information from contactless public transit cards using your NFC-equipped Android phone!
3+
View your remaining balance, recent trips, and other information from contactless public transit cards using your NFC Android phone!
44

55
## Written By
66

build.gradle

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
buildscript {
2+
repositories {
3+
maven { url 'http://repo1.maven.org/maven2' }
4+
}
5+
dependencies {
6+
classpath 'com.android.tools.build:gradle:0.4.1'
7+
}
8+
}
9+
10+
apply plugin: 'android'
11+
12+
repositories {
13+
mavenCentral()
14+
maven { url 'libs' }
15+
}
16+
17+
dependencies {
18+
compile 'com.google.android:support-v4:r7'
19+
compile 'com.google.android.gms:google-play-services:7'
20+
compile 'com.actionbarsherlock:actionbarsherlock:4.3.2-SNAPSHOT'
21+
compile 'commons-io:commons-io:2.4'
22+
compile 'commons-lang:commons-lang:2.6'
23+
compile files('libs/nfc-felica.jar')
24+
}
25+
26+
android {
27+
compileSdkVersion 17
28+
buildToolsVersion "17.0.0"
29+
30+
defaultConfig {
31+
minSdkVersion 10
32+
targetSdkVersion 17
33+
}
34+
35+
signingConfigs {
36+
debug {
37+
storeFile file('debug.keystore')
38+
}
39+
}
40+
}
41+
42+

debug.keystore

4.37 KB
Binary file not shown.

default.properties

-11
This file was deleted.

libs/ActionBarSherlock/.classpath

-8
This file was deleted.

0 commit comments

Comments
 (0)