The first thing to do is to install Git on the remote server.
Once you do that the rest of the process is split into three sections:
- Server set-up
- Local set-up (push commits)
- Server (pull commits)
| @Composable | |
| fun rememberQrBitmapPainter( | |
| content: String, | |
| size: Dp = 150.dp, | |
| padding: Dp = 0.dp | |
| ): BitmapPainter { | |
| val density = LocalDensity.current | |
| val sizePx = with(density) { size.roundToPx() } | |
| val paddingPx = with(density) { padding.roundToPx() } |
| package *; | |
| import android.annotation.SuppressLint; | |
| import android.app.Activity; | |
| import android.content.Context; | |
| import android.content.IntentSender; | |
| import android.location.Location; | |
| import android.os.Looper; | |
| import android.support.annotation.VisibleForTesting; | |
| import com.google.android.gms.common.api.ApiException; |
| public class FragmentObserver extends Observable { | |
| @Override | |
| public void notifyObservers() { | |
| setChanged(); // Set the changed flag to true, otherwise observers won't be notified. | |
| super.notifyObservers(); | |
| } | |
| } |
| -- MySQL dump 10.13 Distrib 5.1.51, for pc-linux-gnu (i686) | |
| -- | |
| -- Host: 127.0.0.1 Database: world | |
| -- ------------------------------------------------------ | |
| -- Server version 5.1.51-debug-log | |
| /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
| /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | |
| /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | |
| /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; |