From 8d399895bcdf13cbce57df996ceffd067525534b Mon Sep 17 00:00:00 2001 From: Brad Leege Date: Tue, 10 Feb 2015 15:13:32 -0800 Subject: #826 - Adjusting rawDir path for token so that it gets created in correct location --- android/java/MapboxGLAndroidSDKTestApp/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'android/java') diff --git a/android/java/MapboxGLAndroidSDKTestApp/build.gradle b/android/java/MapboxGLAndroidSDKTestApp/build.gradle index 7427a5b601..c34cd9e565 100644 --- a/android/java/MapboxGLAndroidSDKTestApp/build.gradle +++ b/android/java/MapboxGLAndroidSDKTestApp/build.gradle @@ -13,9 +13,9 @@ apply plugin: 'com.android.application' apply plugin: 'checkstyle' task accessToken { - def rawDir = new File("MapboxGLAndroidSDKTestApp/src/main/res/raw") + def rawDir = new File("src/main/res/raw") rawDir.mkdirs() - def tokenFile = new File("MapboxGLAndroidSDKTestApp/src/main/res/raw/token.txt") + def tokenFile = new File("src/main/res/raw/token.txt") if (!tokenFile.exists()) { String token = System.getenv('MAPBOX_ACCESS_TOKEN') if (token == null) { -- cgit v1.2.1