Skip to content

Commit

Permalink
Update versionCode; Re-enable packaged audios;
Browse files Browse the repository at this point in the history
  • Loading branch information
barriosnahuel committed Aug 16, 2017
1 parent 209d878 commit 15f8f39
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 0 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,13 @@

### Fixed
- Performance when scrolling.
- Crash when trying to share a packaged audio.

### New
- Static code checks using: SCA.
- Test tools for the debug version: Stetho, different applicatonId and icon, LeakCanary.
- Share saved audios after long press.
- Setup release signing certificate.

### Removed
- Predefined audio messages.

## v1.0.1

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ android {
applicationId "com.github.barriosnahuel.vossosunboton"
minSdkVersion 18
targetSdkVersion 26
versionCode 3
versionCode 4
versionName '1.1.0'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import android.content.Context;
import com.github.barriosnahuel.vossosunboton.data.local.Storage;
import com.github.barriosnahuel.vossosunboton.data.local.defaultaudios.PackagedAudios;
import com.github.barriosnahuel.vossosunboton.data.model.Sound;
import java.util.ArrayList;
import java.util.List;
Expand Down Expand Up @@ -40,8 +41,7 @@ public List<Sound> find(final Context context) {
sounds.add(new Sound(eachSoundName, fileName));
}

// Before adding this take into account that these Sounds doesn't have a path and it's used for the Share Intent.
// sounds.addAll(PackagedAudios.get(context));
sounds.addAll(PackagedAudios.get(context));

return sounds;
}
Expand Down

0 comments on commit 15f8f39

Please sign in to comment.