Skip to content
This repository was archived by the owner on Sep 6, 2019. It is now read-only.
Closed
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
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Gradle files
.gradle/
build/
local.properties

# IntelliJ files
*.iml
.idea/

*~

42 changes: 9 additions & 33 deletions Application/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,3 @@

buildscript {
repositories {
jcenter()
google()
}

dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
}
}

apply plugin: 'com.android.application'

repositories {
Expand All @@ -18,11 +6,10 @@ repositories {
}

dependencies {
compile "com.android.support:support-v4:27.0.2"
compile "com.android.support:gridlayout-v7:27.0.2"
compile "com.android.support:cardview-v7:27.0.2"
compile "com.android.support:appcompat-v7:27.0.2"
compile files('renderscript-v8.jar')
implementation "com.android.support:support-v4:27.1.0"
implementation "com.android.support:gridlayout-v7:27.1.0"
implementation "com.android.support:cardview-v7:27.1.0"
implementation "com.android.support:appcompat-v7:27.1.0"
}

// The sample build uses multiple directories to
Expand All @@ -36,16 +23,13 @@ List<String> dirs = [
android {
compileSdkVersion 27

buildToolsVersion "27.0.2"

defaultConfig {
minSdkVersion 8
minSdkVersion 14
targetSdkVersion 27
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
defaultConfig {
renderscriptTargetApi 24
renderscriptSupportModeEnabled true
}
}

sourceSets {
Expand All @@ -57,13 +41,5 @@ android {
}
androidTest.setRoot('tests')
androidTest.java.srcDirs = ['tests/src']

defaultConfig {

renderscriptTargetApi 24
renderscriptSupportModeEnabled true

}
}

}
31 changes: 17 additions & 14 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@














buildscript {
repositories {
jcenter()
google()
}

dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
}
}

allprojects {
repositories {
jcenter()
google()
}
}