Skip to content

Commit

Permalink
fix: local debug build
Browse files Browse the repository at this point in the history
  • Loading branch information
ruattd committed Feb 26, 2024
1 parent b5badd9 commit 6af75ec
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ Build:
7. Build with Gradle:

```shell
./gradlew assembleMini<Release/ReleaseNoGcm>
./gradlew assembleMini<Debug/Release/ReleaseNoGcm>
```

----
Expand Down
6 changes: 6 additions & 0 deletions TMessagesProj/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,12 @@ android {
resources {
excludes += ['/fabric/**', '/META-INF/*.version', '/META-INF/*.kotlin_module', '/META-INF/native-image/**', '/builddef.lst', '/*.txt', '/DebugProbesKt.bin', '/okhttp3/internal/publicsuffix/NOTICE']
}

def lib = "libtmessages.47.so"
pickFirst "lib/x86/$lib"
pickFirst "lib/x86_64/$lib"
pickFirst "lib/armeabi-v7a/$lib"
pickFirst "lib/arm64-v8a/$lib"
}
namespace "org.telegram.messenger"
lint {
Expand Down

0 comments on commit 6af75ec

Please sign in to comment.