Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/#1297 camera photo save #22

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
PictureDataが表示されない問題→Kotlinで作成APObjectクラスはReflect処理で取得できなかったため、Javaに変更
  • Loading branch information
JangSungChul committed Feb 10, 2021
commit a892db9a127a03b7200e528eb7e73b843865e450
6 changes: 4 additions & 2 deletions src/android/Camera2Fragment.kt
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@ import android.widget.Button
import android.widget.ImageButton
import android.widget.ImageView
import android.widget.Toast
import jp.co.ncdc.apppot.stew.dto.APObject
import jp.co.ncdc.apppot.stew.utils.JsonUtils
import jp.co.ncdc.apppot.stew.APEntityManager
import jp.co.ncdc.apppot.stew.APFile
import jp.co.ncdc.apppot.stew.APResponse
import jp.co.ncdc.apppot.stew.APResponseHandler
//import jp.co.taisei.construction.fieldmanagement.R
// import jp.co.taisei.construction.fieldmanagement.prod2.R
import jp.co.taisei.construction.fieldmanagement.develop.R
Expand Down
29 changes: 0 additions & 29 deletions src/android/PictureData.kt

This file was deleted.

4 changes: 2 additions & 2 deletions src/ios/PictureData.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ open class PictureData: APObject {
// 自動同期するデータの範囲をユーザーが属するグループのデータに指定する。
// 暗号化対象のプロパティーはないと指定する
// 暗号化対象のプロパティーがないので、nilを渡す。
super.setDefaultPropertiesWithScope(SCOPE_TYPE.APScopeGroup,
super.setDefaultPropertiesWithScope(SCOPE_TYPE.APScopeAll,
persistentType: PERSISTENT_TYPE.APPersistentServerOnly,
useLockForUpdate: true,
isAutoRefresh: false,
autoRefreshInterval: 300,
lifeSpan: 86400,
scopeForAutoRefresh: SCOPE_TYPE.APScopeGroup,
scopeForAutoRefresh: SCOPE_TYPE.APScopeAll,
hasEncryptedProperties: false ,
encryptedProperties: nil)
}
Expand Down