Skip to content

Commit

Permalink
Release 0.6.0 prepartion and store publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
jeyasankar committed May 23, 2023
1 parent 3bde79b commit 3204cf6
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 25 deletions.
23 changes: 12 additions & 11 deletions android/app/build.gradle
Expand Up @@ -106,7 +106,7 @@ android {
applicationId "com.onekeepassmobile"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionCode 2
versionName "0.6.0"
}

Expand All @@ -126,14 +126,14 @@ android {
keyPassword 'android'
}
//TODO: (Custom-Jey) Added for release time upload key
// release {
// if (project.hasProperty('OKP_APP_UPLOAD_STORE_FILE')) {
// storeFile file(OKP_APP_UPLOAD_STORE_FILE)
// storePassword OKP_APP_UPLOAD_STORE_PASSWORD
// keyAlias OKP_APP_UPLOAD_KEY_ALIAS
// keyPassword OKP_APP_UPLOAD_KEY_PASSWORD
// }
// }
release {
if (project.hasProperty('OKP_APP_UPLOAD_STORE_FILE')) {
storeFile file(OKP_APP_UPLOAD_STORE_FILE)
storePassword OKP_APP_UPLOAD_STORE_PASSWORD
keyAlias OKP_APP_UPLOAD_KEY_ALIAS
keyPassword OKP_APP_UPLOAD_KEY_PASSWORD
}
}
}
buildTypes {
debug {
Expand All @@ -142,10 +142,11 @@ android {
release {
// Caution! In production, you need to generate your own keystore file.
// see https://reactnative.dev/docs/signed-apk-android.

// Uncomment this for development after commenting out the following one for release
signingConfig signingConfigs.debug
// signingConfig signingConfigs.debug
// TODO: (Custom-Jey) Changed to signingConfig signingConfigs.release
// signingConfig signingConfigs.release
signingConfig signingConfigs.release
minifyEnabled enableProguardInReleaseBuilds
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
}
Expand Down
Expand Up @@ -320,7 +320,6 @@ class DbServiceModule(reactContext: ReactApplicationContext) : ReactContextBaseJ
true // resolved
}
}
return false // no promise call done
} else {
// Do we need to ask the user select the kdbx again to read ?
promise.reject(E_SAVE_FIE_DESCRIPTOR_ERROR, "Invalid file descriptor")
Expand Down
Expand Up @@ -77,7 +77,7 @@ object EventEmitter {
// is not on the top. The app is brought to the front and this func is called from MainActivity.onNewIntent
fun onNewIntent(intent: Intent) {
Log.d(TAG, "In EventEmitter onNewIntent Received intent $intent with ${intent.action}")
intent?.action?.let {
intent.action?.let {
if (it == "android.intent.action.VIEW") {
var uri = intent.data
Log.d(TAG, "EventEmitter onNewIntent Uri received ${uri}")
Expand Down
Expand Up @@ -41,7 +41,7 @@
</Testables>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
buildConfiguration = "Release"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
Expand Down
22 changes: 11 additions & 11 deletions ios/OneKeePassMobile/Info.plist
Expand Up @@ -42,17 +42,17 @@
<true/>
<key>LSSupportsOpeningDocumentsInPlace</key>
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>localhost</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>
<!-- <key>NSAppTransportSecurity</key>-->
<!-- <dict>-->
<!-- <key>NSExceptionDomains</key>-->
<!-- <dict>-->
<!-- <key>localhost</key>-->
<!-- <dict>-->
<!-- <key>NSExceptionAllowsInsecureHTTPLoads</key>-->
<!-- <true/>-->
<!-- </dict>-->
<!-- </dict>-->
<!-- </dict>-->
<key>NSLocationWhenInUseUsageDescription</key>
<string></string>
<key>UIAppFonts</key>
Expand Down

0 comments on commit 3204cf6

Please sign in to comment.