File tree 8 files changed +9
-10
lines changed
8 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -78,10 +78,10 @@ jobs:
78
78
- name : Build Tor_Onion_Proxy_Library and install to local maven repo
79
79
run : |
80
80
cd tor-lib
81
- ./gradlew install
82
81
./gradlew :universal:build
82
+ ./gradlew :universal:publishToMavenLocal
83
83
./gradlew :android:build
84
- ./gradlew :android:publishToMaven
84
+ ./gradlew :android:publishToMavenLocal
85
85
86
86
- name : Assemble new android app apk
87
87
run : |
Original file line number Diff line number Diff line change 1
1
# base image to build eclair-core
2
- FROM eclipse-temurin:11 .0.21_9 -jdk-alpine as ECLAIR_CORE_BUILD
2
+ FROM eclipse-temurin:17 .0.10_7 -jdk-alpine as ECLAIR_CORE_BUILD
3
3
4
4
# this is necessary to extract the eclair-core version that we need to clone for the build
5
5
COPY ./buildSrc/src/main/kotlin/Versions.kt .
@@ -69,10 +69,10 @@ RUN echo y | $ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager "build-tools;${AN
69
69
# build tor library
70
70
RUN git clone https://github.com/ACINQ/Tor_Onion_Proxy_Library && \
71
71
cd Tor_Onion_Proxy_Library && \
72
- ./gradlew install && \
73
72
./gradlew :universal:build && \
73
+ ./gradlew :universal:publishToMavenLocal && \
74
74
./gradlew :android:build && \
75
- ./gradlew :android:publishToMaven
75
+ ./gradlew :android:publishToMavenLocal
76
76
77
77
# copy eclair-core dependency
78
78
COPY --from=ECLAIR_CORE_BUILD /root/.m2/repository/fr/acinq/eclair /root/.m2/repository/fr/acinq/eclair
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ object Versions {
46
46
const val work = " 2.8.1"
47
47
const val viewpager = " 1.0.0"
48
48
const val eventbus = " 3.1.1"
49
- const val torWrapper = " 0.0.5 "
49
+ const val torWrapper = " 0.0.6 "
50
50
const val torCtl = " 0.4"
51
51
}
52
52
}
Original file line number Diff line number Diff line change 19
19
android : roundIcon =" @mipmap/ic_launcher_round"
20
20
android : supportsRtl =" true"
21
21
android : hardwareAccelerated =" true"
22
+ android : extractNativeLibs =" true"
22
23
android : theme =" @style/default_theme"
23
24
android : localeConfig =" @xml/locales_config" >
24
25
Original file line number Diff line number Diff line change 699
699
<string name =" splice_error_nochannels" >No tienes ningún canal</string >
700
700
<string name =" splice_error_aborted_by_peer" >Abortado por el par [%1$s]</string >
701
701
<string name =" splice_error_cannot_create_commit" >No se puede crear un nuevo compromiso</string >
702
- <string name =" splice_error_channel_not_idle" >El canal no está disponible</string >
703
702
<string name =" splice_error_disconnected" >El canal está desconectado</string >
704
703
<string name =" splice_error_funding_error" >Error de fondos [%1$s]</string >
705
704
<string name =" splice_error_insufficient_funds" >Fondos insuficientes</string >
Original file line number Diff line number Diff line change 658
658
<string name =" splice_error_nochannels" >Nemáte žádné kanály</string >
659
659
<string name =" splice_error_aborted_by_peer" >Prerušeno peerem [%1$s]</string >
660
660
<string name =" splice_error_cannot_create_commit" >Nelze vytvořit nový commitment</string >
661
- <string name =" splice_error_channel_not_idle" >Kanál není dostupný</string >
662
661
<string name =" splice_error_disconnected" >Kanál je odpojený</string >
663
662
<string name =" splice_error_funding_error" >Financování selhalo [%1$s]</string >
664
663
<string name =" splice_error_insufficient_funds" >Nedostatek prostředků</string >
Original file line number Diff line number Diff line change 646
646
<string name =" splice_error_nochannels" >Sie haben keine Kanäle</string >
647
647
<string name =" splice_error_aborted_by_peer" >Abbruch durch Gegenstelle [%1$s]</string >
648
648
<string name =" splice_error_cannot_create_commit" >Es kann keine neue Commitment erstellt werden</string >
649
- <string name =" splice_error_channel_not_idle" >Kanal ist nicht verfügbar</string >
650
649
<string name =" splice_error_disconnected" >Kanal ist nicht verbunden</string >
651
650
<string name =" splice_error_funding_error" >Funding ist fehlgeschlagen [%1$s]</string >
652
651
<string name =" splice_error_insufficient_funds" >Kein ausreichendes Guthaben</string >
Original file line number Diff line number Diff line change @@ -21,8 +21,9 @@ Phoenix uses a library to manage the communication with the tor binary. This lib
21
21
``` shell
22
22
./gradlew install
23
23
./gradlew :universal:build
24
+ ./gradlew :universal:publishToMavenLocal
24
25
./gradlew :android:build
25
- ./gradlew :android:publishToMaven
26
+ ./gradlew :android:publishToMavenLocal
26
27
```
27
28
28
29
## Troubleshooting
You can’t perform that action at this time.
0 commit comments