분류 전체보기(28)
-
[Xcode] Bundle ID/Team으로 인한 빌드 Fail
Q A 출처 : https://stackoverflow.com/questions/44160993/xcode-error-the-app-id-cannot-be-registered-to-your-development-team
2019.05.02 -
GitHub Pages 도메인 네임 설정 하기
http://blog.saltfactory.net/setting-domain-name-in-github-pages-via-cname/
2019.05.02 -
Builder 클래스의 의미
#1 단순할 줄 알았던 showDialog 사용하기 위해 어렵게 돌아서 왔다. 문제발생 : main.dart > build() > Scaffold > floatingActionButton 아래의 소스코드가 동작하지 않는다. floatingActionButton: FloatingActionButton( onPressed: () { showDialog( context: context, builder: (context) { return AlertDialog( title: Text('푸시알림'), content: Text('얍'), actions: [ FlatButton( child: Text('OK'), onPressed: () { Navigator.of(context).pop(); }, ) ], ); }, ..
2019.04.16 -
[GitLab] Android Studio에서 private repo 받기
private repo URL로 Checkout 받으려 보니, 'not found' 에러 발생. 기존 URL (https://gitlab.com/MY/REPOSITORY.git) 의 도메인 앞에 USER_ID 명시 필요.
2019.04.04 -
[ADB] wifi 무선 디버깅
* PC와 스마트폰 - 동일한 wifi에 연결 1. PC와 스마트폰 USB 연결 2. 포트(5555) 개방adb tcpip 55553. 스마트폰 IP로 연결adb connect 192.168.0.183:5555
2019.03.26 -
[Xcode] 디버깅 단축키
Step Over : F6 현재 디버깅 라인을 한줄 한줄 내려간다. Step Into : F7 Step Over와 같지만 함수(메소드, 메세지)를 만나면 해당 함수로 점프한다. Step Out : F8 현재 함수를 빠져나온다 (메세지를 호출한 쪽으로 점프) 출처 : https://ddoong2.com/m/299
2019.03.20