Skip to content

Commit

Permalink
CORE-1863 minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
echo-branch committed Apr 27, 2021
1 parent 3cc4f77 commit f5ed9b2
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,15 @@ public static void registerExtension(@NonNull Context context, boolean debugMode
return "io.branch";
}

@Override
protected void onUnregistered() {
super.onUnregistered();
}

@Override public final String getVersion() {
return BuildConfig.VERSION_NAME;
//return BuildConfig.VERSION_NAME;
// TODO: figure out why this isn't being picked up properly
return "1.3.1";
}

@Override public void error(ExtensionError extensionError) {
Expand Down
13 changes: 8 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ buildscript {

repositories {
google()
jcenter()
maven { url 'http://developer.huawei.com/repo/' }
mavenCentral()
maven {
url = uri('https://developer.huawei.com/repo/')
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.1'


// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand All @@ -19,8 +20,10 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
maven { url 'http://developer.huawei.com/repo/' }
mavenCentral()
maven {
url = uri('https://developer.huawei.com/repo/')
}
}
}

Expand Down

0 comments on commit f5ed9b2

Please sign in to comment.