1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-12-23 17:17:46 +01:00

Kaitai: added gradle dependencies

This commit is contained in:
Daniel Dakhno 2024-09-13 00:14:33 +02:00
parent 721b582b87
commit 8d773973f6
2 changed files with 9 additions and 0 deletions

View File

@ -2,6 +2,7 @@ import java.nio.file.Files
apply plugin: "com.android.application"
apply plugin: 'com.google.protobuf'
apply plugin: 'name.valery1707.kaitai'
tasks.withType(Test) {
systemProperty "MiFirmwareDir", System.getProperty("MiFirmwareDir", null)
@ -261,6 +262,8 @@ dependencies {
// Needed for Armenian transliteration
implementation 'org.ahocorasick:ahocorasick:0.6.3'
implementation 'io.kaitai:kaitai-struct-runtime:0.10'
}
preBuild.dependsOn(":GBDaoGenerator:genSources")
@ -299,3 +302,7 @@ protobuf {
}
}
}
kaitai {
version 'hgjghjhgj'
}

View File

@ -12,6 +12,8 @@ buildscript {
classpath 'com.android.tools.build:gradle:8.6.0'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.9.4'
classpath 'name.valery1707.kaitai:kaitai-gradle-plugin:0.1.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}