Skip to content

Commit

Permalink
Migration to Android Studio.
Browse files Browse the repository at this point in the history
  • Loading branch information
jhellingman committed Feb 22, 2015
1 parent 23eef6a commit 9b4b9f6
Show file tree
Hide file tree
Showing 133 changed files with 1,237 additions and 939 deletions.
50 changes: 50 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
app/build/
local.properties
.gradle/
.idea/libraries/
.idea/workspace.xml
app/app-release.apk
app/libs/android-sqlite-asset-helper.jar

# built application files
*.apk
*.ap_

# files for the dex VM
*.dex

# Java class files
*.class

# built native files
*.o
*.so

# generated files
bin/
gen/

# Ignore gradle files
.gradle/
build/

# Local configuration file (sdk path, etc)
local.properties

# Proguard folder generated by Eclipse
proguard/

# Eclipse Metadata
.metadata/

# Mac OS X clutter
*.DS_Store

# Windows clutter
Thumbs.db

# Intellij IDEA (see https://intellij-support.jetbrains.com/entries/23393067)
.idea/workspace.xml
.idea/tasks.xml
.idea/datasources.xml
.idea/dataSources.ids
1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/copyright/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/scopes/scope_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions DictionaryApp.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="unspecified" type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="java-gradle" name="Java-Gradle">
<configuration>
<option name="BUILD_FOLDER_PATH" value="$MODULE_DIR$/build" />
</configuration>
</facet>
</component>
<component name="NewModuleRootManager" inherit-compiler-output="false">
<output url="file://$MODULE_DIR$/build/classes/main" />
<output-test url="file://$MODULE_DIR$/build/classes/test" />
<exclude-output />
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
</content>
<orderEntry type="jdk" jdkName="1.7" jdkType="JavaSDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

13 changes: 0 additions & 13 deletions DictionaryApp/.classpath

This file was deleted.

45 changes: 0 additions & 45 deletions DictionaryApp/.project

This file was deleted.

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

This file was deleted.

3 changes: 0 additions & 3 deletions DictionaryApp/lint.xml

This file was deleted.

20 changes: 0 additions & 20 deletions DictionaryApp/proguard-project.txt

This file was deleted.

14 changes: 0 additions & 14 deletions DictionaryApp/project.properties

This file was deleted.

8 changes: 0 additions & 8 deletions Stemmer/.classpath

This file was deleted.

1 change: 1 addition & 0 deletions Stemmer/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
29 changes: 0 additions & 29 deletions Stemmer/.project

This file was deleted.

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

This file was deleted.

11 changes: 11 additions & 0 deletions Stemmer/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
apply plugin: 'java'

jar {
baseName = 'stemmer'
version = '0.0.1'
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.+'
}
6 changes: 0 additions & 6 deletions Stemmer/build.xml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@

import java.text.Normalizer;

public class CebuanoNormalizer implements SpellingNormalizer
{
public class CebuanoNormalizer implements SpellingNormalizer {
@Override
public final String normalize(final String word)
{
public final String normalize(final String word) {
// Go to lower-case and decompose Unicode
String normalizedString = Normalizer.normalize(word.toLowerCase(), Normalizer.Form.NFD);

Expand Down
Loading

0 comments on commit 9b4b9f6

Please sign in to comment.