I've watched a video relating to it found here: https://www.youtube.com/watch?v=Sk0aZzlocog&featur...
However there is no reload or sync button anymore, therefor this is useless.
However, every time I make changes and want to test them on the device, I press run app and I choose the flex device I get the following error.
Installation failed with message Failed to finalize session:
INSTALL_FAILED_UPDATE_INCOMPATIBLE
gradle file:
apply plugin: 'com.android.application' android { compileSdkVersion 22 defaultConfig { applicationId "com.example.rateme2" minSdkVersion 17 targetSdkVersion 22 versionCode 3 versionName "3.0" } lintOptions { quiet true abortOnError false } signingConfigs { release { keyPassword 'pass' storeFile file('path/to/file') storePassword 'pass' keyAlias 'key0' } } buildTypes { release { signingConfig signingConfigs.release proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } debug { minifyEnabled false signingConfig signingConfigs.release } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:22.2.1' implementation 'com.android.support.constraint:constraint-layout:1.1.3' implementation 'com.android.support:support-annotations:28.0.0' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' implementation 'com.clover.sdk:clover-android-sdk:latest.release' }
How am I supposed to test my app without uploading a new APK and downloading it again every time?
If I ignore the warning and overwrite the app my permissions are stripped and my calls to get merchant information fail.
Matt