Skip to content

Commit

Permalink
test if example app is vanilla instead of checking if its local
Browse files Browse the repository at this point in the history
  • Loading branch information
atlj authored Sep 13, 2024
1 parent e576f3a commit 80264d9
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ module.exports = {
dependency: {
platforms: {
android: {
<%_ if (local) { -%>
cmakeListsPath: 'build/generated/source/codegen/jni/CMakeLists.txt',
<%_ } else { -%>
<% if (example === 'vanilla') { -%>
cmakeListsPath: 'generated/jni/CMakeLists.txt',
<%_ } -%>
<% } else { -%>
cmakeListsPath: 'build/generated/source/codegen/jni/CMakeLists.txt',
<% } -%>
},
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ module.exports = {
dependency: {
platforms: {
android: {
<%_ if (local) { -%>
cmakeListsPath: 'build/generated/source/codegen/jni/CMakeLists.txt',
<%_ } else { -%>
<% if (example === 'vanilla') { -%>
cmakeListsPath: 'generated/jni/CMakeLists.txt',
<%_ } -%>
<% } else { -%>
cmakeListsPath: 'build/generated/source/codegen/jni/CMakeLists.txt',
<% } -%>
},
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ module.exports = {
dependency: {
platforms: {
android: {
<%_ if (local) { -%>
cmakeListsPath: 'build/generated/source/codegen/jni/CMakeLists.txt',
<%_ } else { -%>
<% if (example === 'vanilla') { -%>
cmakeListsPath: 'generated/jni/CMakeLists.txt',
<%_ } -%>
<% } else { -%>
cmakeListsPath: 'build/generated/source/codegen/jni/CMakeLists.txt',
<% } -%>
},
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ module.exports = {
dependency: {
platforms: {
android: {
<%_ if (local) { -%>
cmakeListsPath: 'build/generated/source/codegen/jni/CMakeLists.txt',
<%_ } else { -%>
<% if (example === 'vanilla') { -%>
cmakeListsPath: 'generated/jni/CMakeLists.txt',
<%_ } -%>
<% } else { -%>
cmakeListsPath: 'build/generated/source/codegen/jni/CMakeLists.txt',
<% } -%>
},
},
},
Expand Down

0 comments on commit 80264d9

Please sign in to comment.