Skip to content

Commit

Permalink
Updated the API URL protocol http -> https
Browse files Browse the repository at this point in the history
  • Loading branch information
uruba committed Aug 22, 2018
1 parent b4f1a6e commit 1b6bb64
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ apply plugin: 'com.android.application'
apply plugin: 'com.github.kt3k.coveralls'

android {
compileSdkVersion 23
compileSdkVersion 27
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "cz.uruba.ets2mpcompanion"
minSdkVersion 14
targetSdkVersion 23
versionCode 36
versionName "0.29.1"
targetSdkVersion 27
versionCode 37
versionName "0.29.2"
testInstrumentationRunner "cz.uruba.ets2mpcompanion.test.testrunners.ScreenUnlockedTestRunner"
}
buildTypes {
Expand Down Expand Up @@ -53,18 +53,18 @@ buildscript {
dependencies {
testCompile 'junit:junit:4.12'
androidTestDevelopmentCompile 'com.squareup.okhttp3:mockwebserver:3.0.1'
androidTestDevelopmentCompile 'com.android.support.test.espresso:espresso-core:2.2.1'
androidTestDevelopmentCompile 'com.android.support:support-annotations:23.2.1'
androidTestDevelopmentCompile 'com.android.support.test:runner:0.4.1'
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.android.support:design:23.2.1'
androidTestDevelopmentCompile 'com.android.support.test.espresso:espresso-core:3.0.2'
androidTestDevelopmentCompile 'com.android.support:support-annotations:27.1.1'
androidTestDevelopmentCompile 'com.android.support.test:runner:1.0.2'
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:27.1.1'
compile 'com.android.support:design:27.1.1'
annotationProcessor 'com.jakewharton:butterknife:7.0.1'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.android.support:cardview-v7:23.2.1'
compile 'com.android.support:recyclerview-v7:23.2.1'
compile 'com.android.support:cardview-v7:27.1.1'
compile 'com.android.support:recyclerview-v7:27.1.1'
compile 'org.jsoup:jsoup:1.8.3'
compile 'com.google.android.gms:play-services-analytics:8.4.0'
compile 'com.google.android.gms:play-services-analytics:16.0.1'
}

apply plugin: 'com.google.gms.google-services'
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
public class URL {
public static final String SERVER_LIST = "https://api.truckersmp.com/v2/servers";
public static final String GAME_TIME = "https://api.truckersmp.com/v2/game_time";
public static final String MEETUP_LIST = "http://api.truckapp.org/v1/meetup-list";
public static final String MEETUP_LIST = "https://api.truckapp.org/v1/meetup-list";

public static final String ETS2MP_HOMEPAGE = "https://truckersmp.com/";
public static final String ETS2MP_FORUM = "https://forum.truckersmp.com/";
Expand Down

0 comments on commit 1b6bb64

Please sign in to comment.