Skip to content

Commit

Permalink
Merge pull request #77 from KieronQuinn/release/2.0.4
Browse files Browse the repository at this point in the history
2.0.4
  • Loading branch information
KieronQuinn authored Jun 29, 2022
2 parents aecf6ba + a0961aa commit b71c3a1
Show file tree
Hide file tree
Showing 24 changed files with 798 additions and 47 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ apply plugin: 'com.google.android.gms.oss-licenses-plugin'

String DEFAULT_MANIFEST = "217:https://storage.googleapis.com/music-iq-db/updatable_ytm_db/20220626-030028/manifest.json"

def tagName = '2.0.3'
def version = 203
def tagName = '2.0.4'
def version = 204

def getKeystoreProperties() {
def properties = new Properties()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ interface IShellProxy {
int AudioRecord_getBufferSizeInFrames() = 9;
int AudioRecord_getSampleRate() = 10;

//MusicRecognitionManager proxy
//MusicRecognitionManager proxy (only used externally)
void MusicRecognitionManager_beginStreamingSearch(in RecognitionRequest request, in IRecognitionCallback callback) = 11;

//Sensor Privacy checks for AMM UI & to know when to not recognise
Expand All @@ -41,6 +41,14 @@ interface IShellProxy {
//Force stops Now Playing to force a reload of data
oneway void forceStopNowPlaying() = 19;

//MusicRecognitionManager proxy with added thread injection (not exposed externally)
void MusicRecognitionManager_beginStreamingSearchWithThread(
in RecognitionRequest request,
in IRecognitionCallback callback,
in IBinder thread,
in IBinder token
) = 20;

void destroy() = 16777114;

}
Loading

0 comments on commit b71c3a1

Please sign in to comment.