Skip to content

Commit

Permalink
feat(apple): add Config::development_team getter
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed Aug 27, 2024
1 parent d2169ed commit 031219d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changes/development-team-getter.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"cargo-mobile2": patch
---

Added `apple::Config::development_team` getter.
4 changes: 4 additions & 0 deletions src/apple/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -444,4 +444,8 @@ impl Config {
pub fn bundle_version(&self) -> &VersionNumber {
&self.bundle_version
}

pub fn development_team(&self) -> Option<&str> {
self.development_team.as_deref()
}
}

0 comments on commit 031219d

Please sign in to comment.