Skip to content

Commit 1345865

Browse files
committed
Added a flag indicating the completion of initialization.(#18)
1 parent 4178cb7 commit 1345865

8 files changed

Lines changed: 16 additions & 17 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
22
id 'com.android.library' version '8.1.0' apply false
3-
id 'org.jetbrains.kotlin.android' version '2.2.21' apply false
3+
id 'org.jetbrains.kotlin.android' apply false
44
id 'com.github.dcendents.android-maven' version '1.5' apply false
55
}

docs/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Add the following code to the `build.gradle.kts` file in the `app` module:
1717
```kotlin
1818
dependencies {
1919
// The extension package must be used with the main framework "dora"
20-
implementation("com.github.dora4:dora:1.3.43")
21-
implementation("com.github.dora4:dora-walletconnect-support:2.1.34")
20+
implementation("com.github.dora4:dora:1.3.61")
21+
implementation("com.github.dora4:dora-walletconnect-support:2.1.35")
2222
}
2323
```
2424

docs/es/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Añade el siguiente código en el archivo `build.gradle.kts` del módulo `app`:
1717
```kotlin
1818
dependencies {
1919
// El paquete de extensión debe usarse con el framework principal "dora"
20-
implementation("com.github.dora4:dora:1.3.43")
21-
implementation("com.github.dora4:dora-walletconnect-support:2.1.34")
20+
implementation("com.github.dora4:dora:1.3.61")
21+
implementation("com.github.dora4:dora-walletconnect-support:2.1.35")
2222
}
2323
```
2424

docs/fr/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ Ajoutez le code suivant dans le fichier `build.gradle.kts` du module `app` :
1717
```kotlin
1818
dependencies {
1919
// Le package d'extension doit être utilisé avec le framework principal "dora"
20-
implementation("com.github.dora4:dora:1.3.43")
21-
implementation("com.github.dora4:dora-walletconnect-support:2.1.34")
20+
implementation("com.github.dora4:dora:1.3.61")
21+
implementation("com.github.dora4:dora-walletconnect-support:2.1.35")
2222
}
2323
```
2424

docs/ko/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ dependencyResolutionManagement {
1717
```kotlin
1818
dependencies {
1919
// 확장 패키지는 메인 프레임워크 "dora"와 함께 사용해야 합니다.
20-
implementation("com.github.dora4:dora:1.3.43")
21-
implementation("com.github.dora4:dora-walletconnect-support:2.1.34")
20+
implementation("com.github.dora4:dora:1.3.61")
21+
implementation("com.github.dora4:dora-walletconnect-support:2.1.35")
2222
}
2323
```
2424

docs/zh-cn/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ dependencyResolutionManagement {
1717
```kotlin
1818
dependencies {
1919
// 扩展包必须在有主框架dora的情况下使用
20-
implementation("com.github.dora4:dora:1.3.43")
21-
implementation("com.github.dora4:dora-walletconnect-support:2.1.34")
20+
implementation("com.github.dora4:dora:1.3.61")
21+
implementation("com.github.dora4:dora-walletconnect-support:2.1.35")
2222
}
2323
```
2424

docs/zh-tw/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ dependencyResolutionManagement {
1717
```kotlin
1818
dependencies {
1919
// 擴展包必須與主框架 "dora" 一起使用
20-
implementation("com.github.dora4:dora:1.3.43")
21-
implementation("com.github.dora4:dora-walletconnect-support:2.1.34")
20+
implementation("com.github.dora4:dora:1.3.61")
21+
implementation("com.github.dora4:dora-walletconnect-support:2.1.35")
2222
}
2323
```
2424

lib/build.gradle.kts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ android {
3737
sourceCompatibility = JavaVersion.VERSION_17
3838
targetCompatibility = JavaVersion.VERSION_17
3939
}
40-
4140
// Read build parameter from gradle.properties or command line
4241
val buildNativeLibs: Boolean =
4342
project.findProperty("buildNativeLibs")?.toString()?.toBoolean() ?: false
@@ -59,8 +58,8 @@ android {
5958
}
6059

6160
dependencies {
62-
implementation("com.github.dora4:dora:1.3.43")
63-
api("com.github.dora4:dview-alert-dialog:1.28")
61+
implementation("com.github.dora4:dora:1.3.61")
62+
api("com.github.dora4:dview-alert-dialog:1.35")
6463
// wallet connect
6564
api(platform("com.walletconnect:android-bom:1.31.4"))
6665
api("com.walletconnect:android-core")
@@ -75,7 +74,7 @@ afterEvaluate {
7574
from(components["release"])
7675
groupId = "com.github.dora4"
7776
artifactId = "dora-walletconnect-support"
78-
version = "2.1.34"
77+
version = "2.1.35"
7978
}
8079
}
8180
}

0 commit comments

Comments
 (0)