npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

aart-react-native-kakao-test

v1.0.1

Published

## Getting started

Downloads

2

Readme

react-native-kakao-test

Getting started

$ npm install react-native-kakao-test --save

installation(RN >= 0.60)

별도 링크 과정이 필요없습니다.

NOTE: 최신버전 기준이므로 수동 링크과정은 생략.

iOS

카카오링크 공식가이드 를 참고하셔서 모듈을 사용하기 위한 KakaoSDK를 설치하시기 바랍니다.

Note : KakaoSDK frameworks를 추가한 후 Pods - RNKakaoLink 에서 헤더를 참조하지 못하는 경우

XCode의 좌측에서 Pods PROJECT 선택 후 TARGETS - RNKakaoLink 를 찾아 BuildSettings - Framework SearchPath 에 $(PROJECT_DIR)/.. 를 추가해주시면 됩니다.

Android

android/app/src/main/res/values/string.xml

<resources>
    <string name="app_name">{APP_NAME}</string>
    <string name="kakao_app_key">{APP_KEY}</string>
    <string name="kakao_scheme">kakao{APP_KEY}</string>
    <string name="kakaolink_host">kakaolink</string>
</resources>

android/build.gradle

...

allprojects {
    repositories {
        mavenLocal()
        jcenter()
        maven {
            // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
            url "$rootDir/../node_modules/react-native/android"
        }
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
        // 다음 두 줄 추가.      
        mavenCentral()
        maven { url 'http://devrepo.kakao.com:8088/nexus/content/groups/public/' }
    }
}

...

android/app/build.gradle

dependencies {
    compile project(':react-native-kakao-test')
    compile fileTree(dir: "libs", include: ["*.jar"])
    compile "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
    compile "com.facebook.react:react-native:+"  // From node_modules
    // 다음 한 줄 추가.
    compile group: 'com.kakao.sdk', name: 'kakaolink', version: project.KAKAO_SDK_VERSION
}

android/gradle.properties

// 다음 두줄 추가.
KAKAO_SDK_GROUP=com.kakao.sdk
KAKAO_SDK_VERSION=1.13.0

android/app/src/main/AndroidManifest.xml

...
  </intent-filter>
</activity>

<!-- 다음 두 줄 추가. -->
<meta-data android:name="com.kakao.sdk.AppKey"
           android:value="@string/kakao_app_key" />
...