| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
Tags
- currentTimeMillis
- 실행시간 측정
- code 세팅
- 니돈내먹
- visual studio code
- code 설치
- code .
- Emmet
- GitHub 미러링
- gitlab 연동
- 티스토리초대
- 유니옥션
- 티스토리 초대장
- GitLab Mirroring
- GitLab미러링
- settings sync
- Path Alias
- 프리티어
- 초대장
- 티스토리 초대장/ 티스토리초대
- eslint-import-resolver-typescript
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- 음료같은녹즙
- 네이버 클라우드 플랫폼
- React Native
- react native #gradle
- '티스토리 초대장/ 티스토리초대'
- GitHub Mirroring
- webstorm
- visual studio code cli
Archives
- Today
- Total
방치하기
안드로이드 전화 권한 메인페스트 본문
반응형
메인 페스트에 추가
package com.android.junho;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
public class CallMeActivity extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel://01099380246"));
startActivity(intent);
}
public void onPause()
{
System.exit(0);
}
}
반응형
Comments