Skip to content

Commit

Permalink
Fixing compilation error due to invalid package names
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoperini committed Apr 21, 2020
1 parent ddcad83 commit 5b43ce5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ android {
buildToolsVersion '28.0.3'

defaultConfig {
applicationId "draw.me.fairy"
applicationId "com.testfairy.samples.drawmefairy"
minSdkVersion 16
targetSdkVersion 29

Expand All @@ -24,12 +24,12 @@ android {
productFlavors {
regular {
dimension "features"
applicationId "draw.me.fairy"
applicationId "com.testfairy.samples.drawmefairy"
}

audio {
dimension "features"
applicationId "draw.me.fairy.audio"
applicationId "com.testfairy.samples.drawmefairy.audio"
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import com.testfairy.TestFairy;

import audio.TestFairyAudioRecord;
import draw.me.fairy.BuildConfig;

import utils.AnimalName;

public class MenuActivity extends Activity {
Expand Down Expand Up @@ -205,7 +205,6 @@ private boolean isGooglePhotosUri(Uri uri) {

@TargetApi(Build.VERSION_CODES.KITKAT)
private String getPath(final Context context, final Uri uri) {

final boolean isKitKat = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT;
Log.d(TAG, "URI: " + uri);

Expand Down Expand Up @@ -325,7 +324,6 @@ public boolean onMenuOpened(int featureId, Menu menu) {

@Override
public boolean onOptionsItemSelected(MenuItem item) {

Intent intent;
switch (item.getItemId()) {
case MENU_CLOCK:
Expand Down

0 comments on commit 5b43ce5

Please sign in to comment.