Skip to content

Commit

Permalink
Random
Browse files Browse the repository at this point in the history
  • Loading branch information
Dexterp37 committed Feb 4, 2020
1 parent 9d7eadf commit 588d246
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ internal fun resetGlean(
redirectRobolectricLogs: Boolean = true
) {
if (redirectRobolectricLogs) {
ShadowLog.stream = System.out
//ShadowLog.stream = System.out
println(redirectRobolectricLogs)
}

// We're using the WorkManager in a bunch of places, and Glean will crash
Expand Down
11 changes: 11 additions & 0 deletions samples/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
signingConfigs {
release {
storeFile file('E:\\Mozilla\\AndroidKeystore\\sample_glean_store.jks')
storePassword 'password'
keyAlias = 'key0'
keyPassword 'password'
}
}
compileSdkVersion rootProject.ext.build.compileSdkVersion

defaultConfig {
Expand All @@ -27,6 +35,9 @@ android {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
debuggable true
signingConfig signingConfigs.release
// This is required in order for the build to be profileable.
}
}
}
Expand Down

0 comments on commit 588d246

Please sign in to comment.