Skip to content

Commit

Permalink
Problem: missing copyright for andorid.cc and android.h (fix #912) (#913
Browse files Browse the repository at this point in the history
)
  • Loading branch information
damoncro authored May 10, 2023
1 parent 042d2d4 commit b3c814f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion bindings/cpp/include/android.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright 2022, Cronos Labs. All Rights Reserved

#ifdef __ANDROID__
#include "rust/cxx.h"
#include <jni.h>
Expand All @@ -9,4 +11,4 @@ int secureStorageWrite(rust::String userkey, rust::String uservalue);
rust::String secureStorageRead(rust::String userkey);
} // namespace defi_wallet_core
} // namespace org
#endif
#endif
4 changes: 3 additions & 1 deletion bindings/cpp/src/android.cc
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright 2022, Cronos Labs. All Rights Reserved

#ifdef __ANDROID__
#include <jni.h>
#include <string>
Expand Down Expand Up @@ -84,4 +86,4 @@ rust::String secureStorageRead(rust::String userkey) {

} // namespace defi_wallet_core
} // namespace org
#endif
#endif

0 comments on commit b3c814f

Please sign in to comment.