Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
更新编译版本,修复URL异常的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
qwe7002 authored and qwe7002 committed Jul 30, 2021
1 parent 1273fd8 commit 28a6a28
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
4 changes: 1 addition & 3 deletions .reall_network/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
- Repair SMS command function

- Add support for sending SMS commands with dual cards
- Fix API address UI error
5 changes: 3 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ android {
}

dependencies {
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.browser:browser:1.3.0'
Expand All @@ -49,7 +49,8 @@ dependencies {
implementation 'io.github.pilgr:paperdb:2.7.1'
implementation 'me.dm7.barcodescanner:zxing:1.9.13'
implementation 'androidx.core:core-ktx:1.6.0'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.10'
//noinspection DifferentStdlibGradleVersion
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.5.21'
}

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ protected void onCreate(Bundle savedInstanceState) {
}
display_dual_sim_display_name_switch.setChecked(display_dual_sim_display_name_config);
}

api_address_editview.setText(sharedPreferences.getString("api_address", "api.telegram.org"));
bot_token_editview.setText(bot_token_save);
chat_id_editview.setText(chat_id_save);
trusted_phone_number_editview.setText(sharedPreferences.getString("trusted_phone_number", ""));
Expand Down
6 changes: 2 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,20 @@ buildscript {
repositories {
google()
mavenCentral()
//io.paperdb:paperdb Need this source
//noinspection JcenterRepositoryObsolete
jcenter()

}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.0-beta05'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10"
classpath 'com.android.tools.build:gradle:7.0.0-rc01'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21"
}
}

allprojects {
repositories {
google()
mavenCentral()
//io.paperdb:paperdb Need this source
//noinspection JcenterRepositoryObsolete
jcenter()

Expand Down

0 comments on commit 28a6a28

Please sign in to comment.