IT story

반응 네이티브로 Android 앱을 만들 수 있습니까?

hot-time 2020. 6. 14. 09:49
반응형

반응 네이티브로 Android 앱을 만들 수 있습니까?


최근에 출시 된 iOS 앱 예제 및 문서 만 기본 기능에 반응합니다.


예.

Android 용 React Native는 2015 년 9 월 14 일에 출시되었습니다.

문서 : http://facebook.github.io/react-native/


아니요. 이번 릴리스에서는 Android 앱을 빌드 할 수 없습니다.

페이스 북은 그들이 안드로이드 버전을 개발하고 있다고 지적했으며 일부 사람들이 약속 한 "6 개월 줘"라고 유명하게 말했다 . 6 개월이 지나면 공개 될 것이라는 착각을 바탕으로 중요한 사업 결정을 내리지는 않겠지 만, 적어도 그들이 우리에게주기 전에 생산 준비를하는 것에 대해 진지하다는 사실에 약간의 희망을 가질 수 있습니다. 그것에 접근 할 수 있으며 그것은 단지 하늘에 대한 희망이 아닙니다.

또한 다른 사람들이 지적했듯이 Facebook은 이미 Android 버전의 React Native로 빌드 한 앱을 출시했습니다. 따라서 적어도 일부 는 프라임 타임 준비가되었습니다.

최신 정보

Android 용 React Native에 대한 초기 지원이 GitHub로 푸시되었습니다!

언급했듯이 iOS에서 응용 프로그램을 이식하려고 할 때 현재 작동하지 않는 몇 가지가 있습니다. 그러나 체크 아웃 할 가치가 있습니다.

https://github.com/facebook/react-native/commit/42eb5464fd8a65ed84b799de5d4dc225349449be


크로스 플랫폼, 한 번만 쓸 수있는 도구, 도구가되는 것은 아닙니다. 어디서나 한 번만 쓸 수있는 것을 목표로하고 있습니다. -Raywenderlich의 Colin Eberhardt

좋은 소식은 안드로이드 용 React Native가 마침내 등장한다는 것입니다. ( https://code.facebook.com/posts/1189117404435352 )


지금은 할 수 없지만 오래 걸리지 않아야합니다.

첫 번째 React Native Android 앱은 약 2 주 전에 reactjs 트위터 계정에서 트윗 한대로 Play 스토어에 게시되었습니다.

https://twitter.com/reactjs/status/615638361328349185


좋은 소식! 이제 가능합니다!

"그래서 약 6 개월이 지난 지금 우리가 기다리고있는 커밋!" -usereact.com

http://www.reactnative.com/react-native-for-android/ 에서 자세히 읽어보십시오 .

이 비디오보기 : https://www.youtube.com/watch?v=MNNR01NF290

기쁜


나는 안드로이드에서 Facebook 반응을 시도했지만 실제로 효과가있었습니다.

간단한 우분투 설치 안내서는 여기 에서 찾을 수 있습니다

간단한 JS 파일 : 링크


예, 우리는 이제 반응 네이티브에서도 안드로이드 앱을 개발할 수 있습니다.

일부 앱은 이미 다음과 같은 안드로이드 용 반응 네이티브로 개발되었습니다.

1) F8

2) 페이스 북 광고 관리자

3) 분대

4) 발견 VR

5) 실 리언 등

훨씬 더 많은 계산.

전 세계 개발자들은 JSX 구문을 쉽게 사용할 수 있기 때문에 모바일 앱 개발에 반응 네이티브를 선택하고 있습니다.

또한 일반적으로 MVC에서 단순히 V로 표시됩니다. React는 나머지 기술 스택에 대한 가정을하지 않기 때문에 기존의 비 React Native 앱에 쉽게 포함시킬 수 있습니다.


TLDR; 예,

자세한 답변 (2017 년 11 월 기준)

React Native 안드로이드 응용 프로그램 개발은 매우 안정적이며 React-Native를 사용하여 프로덕션에 많은 수의 Android 응용 프로그램이 이미 구축되어 사용되었습니다.

여기 에서 응용 프로그램의 쇼케이스를 찾을 수 있습니다 . 대부분 IOS와 Android 버전이 있습니다.

You can also easily integrate your native Android java code to react-native. Refer here

As a developer who is building Android app using react-native with a lot of native java code dependencies, react-native runs stable and I found the documentation and community support is adequate.


Yes, it works for both the platforms ios and android, be sure to mention code entry points in app.js if it uses different code for different platforms. However native functions like native events or location manager need to be coded in native languages and then exported using RCT_EXPORT, you can find more about it in the docs


Sure, Using React Native you can build real mobile app. real app means close to platform or simply can say 99% native app.react native provide easy way for building native android app using javascript for lucrative design.You have basic knowledge of android studio and error fixing in android studio related native module integration and good understanding of react.js then you can build android app using react native. Basic Requirement for android app 1. Configure android studio please follow below link and avoid installation of python. https://facebook.github.io/react-native/docs/getting-started . 2. for UI you will learn flex-box from official documentation. I thing that is enough


Yes, not just with android but also with iOS using XCode


예, React-Native로 실제 몹 응용 프로그램을 만들 수 있습니다. React-Native는 하이브리드 모바일 애플리케이션을 작성하는 데 사용됩니다. 여기에서 우리는 ios의 경우 신속하고 안드로이드의 경우 Java로 신속하게 변환되는 코드를 javascript로 작성합니다.

참고 URL : https://stackoverflow.com/questions/29287934/can-i-build-android-apps-with-react-native

반응형