Skip to content
This repository has been archived by the owner on Feb 1, 2023. It is now read-only.

Commit

Permalink
Set chat url to HTTPS
Browse files Browse the repository at this point in the history
  • Loading branch information
markhaehnel committed Jun 9, 2016
1 parent 5318090 commit cb2dd1c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
android:required="false" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

<application
android:allowBackup="true"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ private void setupChat() {
WebView chat = (WebView)findViewById(R.id.webViewChat);
chat.setAlpha(0.75f);
chat.getSettings().setJavaScriptEnabled(true);
chat.loadUrl("http://ezteq.github.io/rbtv-firetv/");
chat.loadUrl("https://ezteq.github.io/rbtv-firetv/");
}

@Override
Expand Down
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 {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
classpath 'com.android.tools.build:gradle:2.1.2'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down

0 comments on commit cb2dd1c

Please sign in to comment.