Skip to content

Commit 340c394

Browse files
committed
Depend on android-activity 0.4 instead of relative path
1 parent d15ca31 commit 340c394

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

agdk-cpal/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
[dependencies]
99
log = "0.4"
1010
android_logger = "0.11.0"
11-
android-activity = { path="../../android-activity", features = ["game-activity"] }
11+
android-activity = { version = "0.4", features = ["game-activity"] }
1212
cpal = "0.14"
1313
atomic_float = "0.1"
1414
anyhow = "1"

agdk-mainloop/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
[dependencies]
99
log = "0.4"
1010
android_logger = "0.11.0"
11-
android-activity = { path="../../android-activity", features = ["game-activity"] }
11+
android-activity = { version = "0.4", features = ["game-activity"] }
1212

1313
[lib]
1414
name="main"

agdk-oboe/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
[dependencies]
99
log = "0.4"
1010
android_logger = "0.11.0"
11-
android-activity = { path="../../android-activity", features = ["game-activity"] }
11+
android-activity = { version = "0.4", features = ["game-activity"] }
1212
oboe = { version = "0.4", features = ["java-interface"] }
1313
atomic_float = "0.1"
1414

na-mainloop/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
[dependencies]
99
log = "0.4"
1010
android_logger = "0.11.0"
11-
android-activity = { path="../../android-activity", features = [ "native-activity" ] }
11+
android-activity = { version = "0.4", features = [ "native-activity" ] }
1212

1313
[lib]
1414
#name="na_mainloop"

na-openxr-info/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env_logger = "0.9"
1414

1515
[target.'cfg(target_os = "android")'.dependencies]
1616
android_logger = "0.11.0"
17-
android-activity = { path="../../android-activity", features = ["native-activity"] }
17+
android-activity = { version = "0.4", features = ["native-activity"] }
1818

1919
[patch.crates-io]
2020
# openxr 0.16 uses ndk-glue, but master uses ndk-context which is compatible with android-activity

na-openxr-wgpu/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ctrlc = "3"
2121

2222
[target.'cfg(target_os = "android")'.dependencies]
2323
android_logger = "0.11.0"
24-
android-activity = { path="../../android-activity", features = [ "native-activity" ] }
24+
android-activity = { version = "0.4", features = [ "native-activity" ] }
2525
openxr = { version = "0.16", features = [ "linked" ] }
2626

2727
[patch.crates-io]

na-subclass-jni/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
[dependencies]
99
log = "0.4"
1010
android_logger = "0.11.0"
11-
android-activity = { path="../../android-activity", features = [ "native-activity" ] }
11+
android-activity = { version = "0.4", features = [ "native-activity" ] }
1212
ndk-context = "0.1"
1313
jni = "0.19"
1414

0 commit comments

Comments
 (0)