Skip to content

Commit

Permalink
Support android studio 0.9.1
Browse files Browse the repository at this point in the history
Fix auto-test bug: There is no tests.
  • Loading branch information
in_dow committed Nov 10, 2014
1 parent e442c54 commit 238cbf4
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
4 changes: 2 additions & 2 deletions OpenRedmine/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ android {
buildTypes {
debug {
debuggable true
zipAlign true
zipAlignEnabled true
buildConfigField 'boolean', 'DEBUG_XML', 'false'
}
release {
Expand All @@ -34,7 +34,7 @@ android {
//proguardFile file('proguard-project.txt')

debuggable false
zipAlign true
zipAlignEnabled true
buildConfigField 'boolean', 'DEBUG_XML', 'false'
if (project.hasProperty('keyAlias')) {
signingConfig signingConfigs.release
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package org.transdroid.daemon.util;

import android.test.AndroidTestCase;

public class SocketFactoryTest extends AndroidTestCase {
public void testDummy(){
assertEquals(true,true);
}
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.12.+'
classpath 'com.android.tools.build:gradle:0.14.0'
}
}

Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Jun 11 00:59:22 JST 2014
#Thu Nov 06 01:26:50 JST 2014
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-1.12-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.1-all.zip

0 comments on commit 238cbf4

Please sign in to comment.