Skip to content

Commit e7d0d48

Browse files
committed
implement review feedback
1 parent 0035f09 commit e7d0d48

3 files changed

Lines changed: 5 additions & 14 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,5 @@ app/lite/release/
6666
fastlane/report.xml
6767

6868
.idea/
69+
70+
app/CMakeUserPresets.json

app/CMakeUserPresets.json

Lines changed: 0 additions & 12 deletions
This file was deleted.

app/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ task conanProfile {
2525
task conanInstall {
2626
["armv7", "armv8", "x86", "x86_64"].each { String arch ->
2727
exec {
28+
// replace with local path to conan-binary
2829
commandLine(
29-
"/home/tom/Documents/ODR/OpenDocument.droid/bin/conan", "install", ".",
30+
"conan", "install", ".",
3031
"--output-folder=build/conan/" + arch,
3132
"--build=missing",
3233
"--profile:host=build/conanprofile.txt",
@@ -167,4 +168,4 @@ dependencies {
167168
// espresso-idling-resource is used in main sourceSet as well. cannot be just androidTestImplementation
168169
implementation 'androidx.test.espresso:espresso-idling-resource:3.5.1'
169170
implementation 'androidx.annotation:annotation:1.8.0'
170-
}
171+
}

0 commit comments

Comments
 (0)