Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'android/build.gradle')
-rw-r--r--android/build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/build.gradle b/android/build.gradle
index 0d6249ed35..ac365edb06 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -31,7 +31,7 @@ apply plugin: 'io.fabric'
dependencies {
// android support libs
- compile 'com.android.support:support-v4:23.4.0' {
+ compile ('com.android.support:support-v4:23.4.0') {
force = true;
}
compile 'com.android.support:appcompat-v7:23.4.0'
@@ -249,7 +249,7 @@ android {
android.applicationVariants.all { variant ->
def task = variant.name.capitalize()
project.task(type: Exec, "run${task}", dependsOn: "install${task}") {
- commandLine android.getAdbExe(), 'shell', 'am', 'start', '-n', "${applicationId}/com.mapswithme.maps.DownloadResourcesActivity"
+ commandLine android.getAdbExe(), 'shell', 'am', 'start', '-n', "${applicationId}/com.mapswithme.maps.SplashActivity"
}
variant.outputs.each { output ->