1
0
mirror of https://github.com/tijder/SmsMatrix.git synced 2025-06-07 18:03:53 +00:00

Merge pull request #1 from tijder/master

Catch up to tijder
This commit is contained in:
untidylamp 2018-12-05 17:27:39 -05:00 committed by GitHub
commit 012093a20d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 6 deletions

View File

@ -6,7 +6,7 @@ As currently there is no end-to-end encryption implemented in this app, for priv
# Set up # Set up
- Create a acount on a homeserver - Create a acount on a homeserver
- Install this app - Install this app (apk can be found by [releases](https://github.com/tijder/SmsMatrix/releases))
- Give the app the app permission - Give the app the app permission
- Type in the needed info in the app - Type in the needed info in the app
- Bot Username: is the username of the just created user - Bot Username: is the username of the just created user
@ -16,3 +16,4 @@ As currently there is no end-to-end encryption implemented in this app, for priv
- Devicename: is the devicename wich the api will use - Devicename: is the devicename wich the api will use
- Press save - Press save
- Now all your text messages will be bridged - Now all your text messages will be bridged
- [optional] Disable battery optimisations for the app. so the app wont be killed by Android.

View File

@ -2,13 +2,13 @@ apply plugin: 'com.android.application'
android { android {
compileSdkVersion 26 compileSdkVersion 26
buildToolsVersion '26.0.2' buildToolsVersion '28.0.3'
defaultConfig { defaultConfig {
applicationId "eu.droogers.smsmatrix" applicationId "eu.droogers.smsmatrix"
minSdkVersion 23 minSdkVersion 23
targetSdkVersion 26 targetSdkVersion 26
versionCode 9 versionCode 10
versionName "0.0.9" versionName "0.0.10"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
} }
buildTypes { buildTypes {

View File

@ -2,8 +2,8 @@
buildscript { buildscript {
repositories { repositories {
jcenter()
google() google()
jcenter()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.2.1' classpath 'com.android.tools.build:gradle:3.2.1'
@ -15,8 +15,8 @@ buildscript {
allprojects { allprojects {
repositories { repositories {
jcenter()
google() google()
jcenter()
} }
} }