Skip to main content

Posts

How to Create an Apple Enterprise Developer Account

  How to Create an Apple Enterprise Developer Account An Apple Enterprise Developer account is what you'll need in order to distribute internal apps for your company. Before you enroll in Apple's Enterprise Developer Program, please be aware of the following: The Enterprise program is ONLY intended for a company/organization who is creating an app to be used only by their employees. These apps should not be distributed to the general public or your customers under any circumstances. Your company/organization must be a legal entity. Apple does not accept DBAs, fictitious businesses, trade names, or branches. Your company/organization must have a D-U-N-S Number so that Apple can verify you are a legal entity. There is a possibility that your company may have had a D-U-N-S Number already assigned, so it's a good idea to check this before enrolling. You can see if your company already has a D-U-N-S Number here . You must be the organization’s owner/founder, executive team membe...
Recent posts

React Native: How To Open App Settings Page

  React Native: How To Open App Settings Page React Native has a Linking module to manage the interaction with other applications in the device. In this article, I will explain how you can open “Application Setting Page” of the device using. Sample Case Before I explain how to do this, I’ll talk about an example case where we might need this: You need to get location permission within the application from a user using an iOS operating system and you asked for permission. But user did not agree to grant this permission the first time. In this case, you cannot ask your user for location permission the second time. In this case, the only thing to do is to direct the user to the settings page of our application and make it manually allow it. Now that we have explained our example situation, we can move on to how we can redirect our user to the “settings page of our application”. Open App Settings Page iOS If our user is using an iOS operating system, we can handle the whole process wit...

How to integrate Firebase notifications in React Native (Android)

How to integrate Firebase notifications in React Native (Android) Introduction Notifications are an integral part of a mobile application. These notifications grab the user’s attention and increase the engagement of your app. Apps like Instagram have used notifications to make users come back to their application when a follower comments on your post or if someone follows your account. Firebase offers a service called  Firebase Notifications  that enables developers to send notifications from the Firebase dashboard or their server. In this shot, we will learn how to integrate Firebase notifications in our React Native application and send notifications from our Firebase dashboard. Installation steps The first step is to create a new React Native(RN) Project. Go to your terminal and run the commands below: npx react-native init firebasenotification cd firebasenotification After we create a new RN project, we have to create a new Firebase project and configur...