summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorTobrun <tobrun.van.nuland@gmail.com>2015-10-08 10:47:42 +0200
committerBrad Leege <bleege@gmail.com>2015-10-08 11:36:04 -0500
commit63887f8a237eb0ee6013fdaad410ffe7d814284b (patch)
treeaf97f7aa6ed0aedcbe7f043cb059c0da0b4beab9 /android
parente74445005add76e767f3969044aaae0df5469196 (diff)
downloadqtlocation-mapboxgl-63887f8a237eb0ee6013fdaad410ffe7d814284b.tar.gz
[android] #2462 updated build.grade to handle correct path for api token
Diffstat (limited to 'android')
-rw-r--r--android/java/MapboxGLAndroidSDKTestApp/build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/java/MapboxGLAndroidSDKTestApp/build.gradle b/android/java/MapboxGLAndroidSDKTestApp/build.gradle
index 8a7d95fbe7..8f3b7fb125 100644
--- a/android/java/MapboxGLAndroidSDKTestApp/build.gradle
+++ b/android/java/MapboxGLAndroidSDKTestApp/build.gradle
@@ -16,9 +16,9 @@ apply plugin: 'io.fabric'
apply plugin: 'checkstyle'
task accessToken {
- def rawDir = new File("MapboxGLAndroidSDKTestApp/src/main/res/raw")
+ def rawDir = new File("MapboxGLAndroidSDK/src/main/res/raw")
rawDir.mkdirs()
- def tokenFile = new File("MapboxGLAndroidSDKTestApp/src/main/res/raw/token.txt")
+ def tokenFile = new File("MapboxGLAndroidSDK/src/main/res/raw/token.txt")
if (!tokenFile.exists()) {
String token = "$System.env.MAPBOX_ACCESS_TOKEN"
if (token == null) {