Skip to content

Commit 11cc6c8

Browse files
committed
gradleify project
1 parent aabc20c commit 11cc6c8

File tree

140 files changed

+403
-65
lines changed

Some content is hidden

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

140 files changed

+403
-65
lines changed

.gitignore

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
*/bin
2-
*/gen
3-
*/build-private.properties
4-
*/local.properties
1+
bin
2+
gen
3+
build-private.properties
4+
local.properties
5+
release
6+
build
7+
.gradle
8+
.idea
9+
*.iml
10+
*~

.idea/libraries/OINotepadMyBackupPro.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/polidea_test_runner_1_2.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/robotium_solo_3_1.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

NotePad/build.gradle

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion 22
5+
buildToolsVersion "22.0.1"
6+
7+
defaultConfig {
8+
applicationId "org.openintents.notepad"
9+
minSdkVersion 7
10+
targetSdkVersion 22
11+
versionCode 1
12+
versionName "1.0"
13+
}
14+
15+
lintOptions {
16+
checkReleaseBuilds false
17+
}
18+
19+
}
20+
21+
dependencies {
22+
compile files('libs/OINotepadMyBackupPro.jar')
23+
compile 'org.openintents:distribution-lib:1.0.2'
24+
androidTestCompile files('libs/polidea_test_runner_1.2.jar')
25+
androidTestCompile files('libs/robotium-solo-3.1.jar')
26+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.

NotePadTest/src/org/openintents/notepad/test/TestNotesList.java renamed to NotePad/src/androidTest/java/org/openintents/notepad/test/TestNotesList.java

File renamed without changes.

0 commit comments

Comments
 (0)