Posts

NFC Checker App Privacy Policy

  Privacy Policy SMA Creative Studio built the NFC Checker app as a Free app. This SERVICE is provided by SMA Creative Studio at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which are accessible at NFC Checker unless otherwise defined in this Privacy Policy. Information Collection and Use For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information. The information that I requ

Counter App Privacy Policy

  Privacy Policy SMA Creative Studio built the Counter as a Free app. This SERVICE is provided by SMA Creative Studio at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which are accessible at Counter unless otherwise defined in this Privacy Policy. Information Collection and Use For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information. The information that I request will be

Privacy Policy For Real Love Calculator-Prank app

  Privacy Policy SMA Creative Studio built the Real Love Calculator-Prank app as a Free app. This SERVICE is provided by SMA Creative Studio at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which are accessible at Real Love Calculator-Prank unless otherwise defined in this Privacy Policy. Information Collection and Use For a better experience, while using our Service, I may require you to provide us with certain personally identifiable informatio

Privacy Policy for Live Weather Forecast - Realtime app

  Privacy Policy SMA Creative Studio built the Live Weather Forecast - Realtime app as a Free app. This SERVICE is provided by SMA Creative Studio at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which are accessible at Live Weather Forecast - Realtime unless otherwise defined in this Privacy Policy. Information Collection and Use For a better experience, while using our Service, I may require you to provide us with certain personally identifiabl

React Native push notification via admin SDK

1:first of all go to RN firebase documentation  Notifications | React Native Firebase (rnfirebase.io) 2: then  we will create our own nodejs server 3:create folder into project folder name: nodejs_stuff 4: then create file into nodejs stuff folder name:index.js 5:now open terminal and navigate to nodejs_stuff folder using this cammand cd nodejs stuff 6:now run this command into nodejs_stuff folder npm init then press Enter many times 7:now install admin sdk into nodejs_stuff folder using this commmand==>>  npm install --save firebase-admin 8:then install  express using this command  npm install express 9:now go to firebase console then settings/project settings/service accounts

Create apk file with android studio in react native

 1:First of all go to RN  official site and search publish to google playstore  2:then copy  Setting up Gradle variables  MYAPP_UPLOAD_STORE_FILE=my-upload-key.keystore MYAPP_UPLOAD_KEY_ALIAS=my-key-alias MYAPP_UPLOAD_STORE_PASSWORD=***** MYAPP_UPLOAD_KEY_PASSWORD=***** and paste into A ndroid/gradle.properties 3:then give it the name and password MYAPP_UPLOAD_STORE_FILE =mykeystore MYAPP_UPLOAD_KEY_ALIAS =key1 MYAPP_UPLOAD_STORE_PASSWORD =123456 MYAPP_UPLOAD_KEY_PASSWORD =123456 4: then add release to Android/App/build.gradle in signingConfigs{*****} Adding signing config to your app's Gradle config ​ The last configuration step that needs to be done is to setup release builds to be signed using upload key. Edit the file  android/app/build.gradle  in your project folder, and add the signing config, ... android { ... defaultConfig { ... } signingConfigs { //add this lines release { if (project.hasProperty('MYAPP_UPLOAD_STORE_FILE')) {

Firebase Facebook SignIn

1: First of all goto RNFirebase  and install it  # Install & setup the app module yarn add @react-native-firebase/app # Install the authentication module yarn add @react-native-firebase/auth 2:click Authenticaion tab then click on social Auth 3:now goto fb    community-supported React Native library and install FbSDK libarary npm install --save react-native-fbsdk-next 4:now configure projects And click on android:    Getting Started Guide 5:then click on quick start for android  Quick Start for Android 6:now its open Meta for developers site 7:then click on quick start  8:then login your fb account and create  an app 9:select an app type  (none): then click next 10:then add   Display name and click on create app 11:then click on fb login set up 12: choose android  13:then click on next 14:then copy   mavenCentral () and past it into android/build.gradle in repositories{} 15:then copy  implementation 'com.facebook.android:facebook-android-sdk:latest.release' and paste