Skip to content
This repository has been archived by the owner on Jan 16, 2019. It is now read-only.

Commit

Permalink
MAJOR RESTRUCTURE. Migrated project to Android Studio
Browse files Browse the repository at this point in the history
  • Loading branch information
marshallb93 committed Jul 8, 2015
1 parent 115ffc1 commit 9a17d97
Show file tree
Hide file tree
Showing 388 changed files with 7,094 additions and 7,102 deletions.
9 changes: 0 additions & 9 deletions .classpath

This file was deleted.

5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
build
.gradle
.idea
local.properties
*.iml
12 changes: 0 additions & 12 deletions .hgignore

This file was deleted.

33 changes: 0 additions & 33 deletions .project

This file was deleted.

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

This file was deleted.

9 changes: 0 additions & 9 deletions .tx/config

This file was deleted.

46 changes: 0 additions & 46 deletions LICENSE.txt

This file was deleted.

18 changes: 0 additions & 18 deletions README.md

This file was deleted.

16 changes: 16 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
}
}

allprojects {
repositories {
jcenter()
mavenCentral()
}
}
34 changes: 34 additions & 0 deletions collect_app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/**************************************************************************************************
GRADLE CONFIG
*************************************************************************************************/

apply plugin: 'com.android.application'

android {
buildToolsVersion "22.0.1"
compileSdkVersion "Google Inc.:Google APIs:19"
defaultConfig {
applicationId "org.odk.collect"
minSdkVersion 7
targetSdkVersion 8
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}

packagingOptions {
pickFirst 'META-INF/DEPENDENCIES'
pickFirst 'META-INF/LICENSE'
pickFirst 'META-INF/LICENSE.txt'
pickFirst 'META-INF/NOTICE'
pickFirst 'META-INF/NOTICE.txt'
}
}

dependencies {
compile fileTree(include: '*.jar', dir: 'libs')
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file added collect_app/libs/google-play-services.jar
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions collect_app/lint.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<lint>
</lint>
File renamed without changes.
Loading

0 comments on commit 9a17d97

Please sign in to comment.