2015-01-07 14:00:18 +01:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
2021-04-30 12:21:49 +02:00
|
|
|
mavenCentral()
|
2017-11-11 00:55:05 +01:00
|
|
|
google()
|
2019-09-19 22:31:49 +02:00
|
|
|
maven {
|
|
|
|
url 'https://plugins.gradle.org/m2/'
|
|
|
|
}
|
2015-01-07 14:00:18 +01:00
|
|
|
}
|
|
|
|
dependencies {
|
Downgrade com.android.tools.build:gradle to v8.7.0
Nightly build fails:
```
2024-10-03 23:18:19,270 INFO: APK file was successfully validated!
2024-10-03 23:18:19,321 CRITICAL: Unknown exception found!
Traceback (most recent call last):
File "/usr/local/lib/python3.10/dist-packages/androguard/core/bytecodes/apk.py", line 1556, in get_android_resources
return self.arsc["resources.arsc"]
KeyError: 'resources.arsc'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/bin/fdroid", line 8, in <module>
sys.exit(main())
File "/usr/local/lib/python3.10/dist-packages/fdroidserver/__main__.py", line 230, in main
raise e
...
File "/usr/local/lib/python3.10/dist-packages/androguard/core/bytecodes/axml/__init__.py", line 2181, in __init__
raise ResParserError("res1 must be zero!")
androguard.core.bytecodes.axml.ResParserError: res1 must be zero!
```
This reverts commit b8bf1200c162e17f70d86880f7c5ab692a3c52f2.
2024-10-04 21:05:49 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:8.6.1'
|
2015-01-07 14:00:18 +01:00
|
|
|
|
2024-04-15 23:04:43 +02:00
|
|
|
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.9.4'
|
2015-01-07 14:00:18 +01:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2021-04-30 12:21:49 +02:00
|
|
|
mavenCentral()
|
2015-06-11 23:34:16 +02:00
|
|
|
maven {
|
2020-07-19 22:25:16 +02:00
|
|
|
url 'https://jitpack.io'
|
2015-06-11 23:34:16 +02:00
|
|
|
}
|
2017-11-14 11:01:29 +01:00
|
|
|
google()
|
2015-01-07 14:00:18 +01:00
|
|
|
}
|
|
|
|
}
|