3월, 2018
26 03 2018
Haeng Ho Kang | Programming, Android |
안드로이드 Firebase 안내 https://firebase.google.com/docs/cloud-messaging/android/client 1)Firebase에 앱추가 1)프로젝트를 생성후 앱 추가를 누른다. 앱프로젝트의 >app> build.gradle에서
|
defaultConfig { applicationId "kr.or.xxxx.xxxx" minSdkVersion 16 targetSdkVersion 25 versionCode 112 versionName "1.1.2" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } |
2)패키지명을 kr.or.xxxx.xxxx 로 안드로이드 패키지 이름으로 지정후 google-sevices.json을 다운받아 앱프로젝트> app 팀에 복사한다. 3)완료 위에서와 같이 프로젝트>build.gradle에
|
buildscript { repositories { jcenter() google() } dependencies { classpath 'com.android.tools.build:gradle:3.0.1' classpath 'com.google.gms:google-services:3.1.0' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } |
그리고 프로젝트>app>build.gradle
|
apply plugin: 'com.google.gms.google-services' |
추가한다. 그리고 dependencies부분에
|
compile 'com.google.firebase:firebase-messaging:11.8.0' |
넣어준다. 2) 앱에 Firebase 추가 Android Studio 에서 Firebase Assistant를 여는 방법 Tools> Firebase 를 […]
23 03 2018
Haeng Ho Kang | Programming, Swift |
Firebase의 가이드, https://firebase.google.com/docs/cloud-messaging/ios/client?authuser=0 1)프로젝트를 만든다 developer.apple.com에 해당 프로젝트의 정보를 등록해서 App IDS가 필요하고 Push Notifications 의 Certificates에 등록되어야 한다. 여기서 발급한 키는 이제 사용하지 않아도 된다 Apple에서 Keys라는 메뉴를 만들어서 하나의 Key로 Firebase의 인증을 처리 할수 있다 iOS의 프로젝트를 추가 위해서는 (1)bundle id (2)앱 ID prefix가 필요함 2)앱에 Firebase 추가 https://console.firebase.google.com/?pli=1에 접속 프로젝트를 추가한다. 화면을 […]
21 03 2018
Haeng Ho Kang | DataBase, Oracle |
에러
|
[ktest] /home/FILE]imp userid=nuriware/password@ktest file='tbccm03c_table.dmp' tables='tbccm03c' IMP-00038: Could not convert to environment character set's handle IMP-00000: Import terminated unsuccessfully |
해결 파일위치 [ktest] /home/FILE]ls tbccm03c_table.dmp 디레토리 생성
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
[ktest] /home/FILE]sqlplus SQL*Plus: Release 12.2.0.1.0 Production on Wed Mar 21 13:44:20 2018 Copyright (c) 1982, 2016, Oracle. All rights reserved. Enter user-name: nuriware Enter password: Last Successful login time: Wed Mar 21 2018 13:42:52 +09:00 Connected to: Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production SQL> create directory tabledump as '/home/FILE'; create directory tabledump as '/home/FILE' Directory created. |
이때 권한 확인 chown -R oracle:oinstall FILE 임포트
|
[ktest] /home/FILE]ls -al 합계 208 drwxr-xr-x. 2 oracle oinstall 31 3월 21 13:31 . drwxr-xr-x. 5 root root 45 3월 21 13:30 .. -rwxr-xr-x. 1 oracle oinstall 212992 3월 21 13:31 tbccm03c_table.dmp [ktest] /home/FILE]impdp userid=nuriware/password@ktest directory=tabledump dumpfile='tbccm03c_table.dmp' tables='tbccm03c' |