Não use UUID
como PK nas tabelas do seu banco de dados.
#!/bin/bash | |
cd /opt/ && wget http://downloads.asterisk.org/pub/telephony/asterisk/asterisk-13-current.tar.gz | |
tar -xvzf asterisk-13-current.tar.gz | |
cd asterisk-13* | |
apt install build-essential -y | |
apt install libxml2-dev -y | |
apt install libncurses5-dev libreadline-dev libreadline6-dev -y | |
apt install libssl-dev -y | |
apt install uuid-dev -y | |
apt install libjansson-dev -y |
#!/bin/sh | |
set -x | |
set -e | |
# | |
# Docker build calls this script to harden the image during build. | |
# | |
# NOTE: To build on CircleCI, you must take care to keep the `find` | |
# command out of the /proc filesystem to avoid errors like: | |
# | |
# find: /proc/tty/driver: Permission denied |
Here's the list with the additional points:
-
Ensure that you have OpenJDK 17, Android Studio, and its associated tools and NDK (Native Development Kit) installed on your system.
-
Initialize a new Expo project by executing the following command in your terminal:
pnpm create expo-app@latest
. This command will prompt you to provide some details about your project, such as the project name and configuration options. -
Before building the Android app, you need to prebuild the
android
directory. Run the commandpnpm expo prebuild
to generate the necessary files. Additionally, you should provide your app's package name during this step. For example, if your app's package name iscom.example.app
. -
Generate a keystore file. Use an administrator shell to create the keystore. Run the following command:
keytool -genkeypair -v -storetype PKCS12 -keystore my-upload-key.keystore -alias my-key-alias -keyalg RSA -keysize 2048 -validity 10000
and enter your password (store it safely somewhere) and details.
Here's the list with the additional points:
-
Ensure that you have OpenJDK 17, Android Studio, and its associated tools and NDK (Native Development Kit) installed on your system.
-
Initialize a new Expo project by executing the following command in your terminal:
pnpm create expo-app@latest
. This command will prompt you to provide some details about your project, such as the project name and configuration options. -
Before building the Android app, you need to prebuild the
android
directory. Run the commandpnpm expo prebuild
to generate the necessary files. Additionally, you should provide your app's package name during this step. For example, if your app's package name iscom.example.app
. -
Generate a keystore file. Use an administrator shell to create the keystore. Run the following command:
keytool -genkeypair -v -storetype PKCS12 -keystore my-upload-key.keystore -alias my-key-alias -keyalg RSA -keysize 2048 -validity 10000
and enter your password (store it safely somewhere) and details.