Skip to content

Commit

Permalink
Merge pull request #138 from FantasqueX/add-debug-suffix-1
Browse files Browse the repository at this point in the history
Add debug suffix to debug build type
  • Loading branch information
Justwen authored Feb 8, 2023
2 parents 0e55666 + a5d2cb5 commit 0f2f88e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 12 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ buildscript {

allprojects {
repositories {
maven { url 'https://maven.aliyun.com/repository/google'}
maven { url 'https://maven.aliyun.com/repository/google' }
//TODO Remove all dependencies in jcenter
maven { url 'https://maven.aliyun.com/repository/public' }
maven { url "https://www.jitpack.io" }
maven { url 'https://www.jitpack.io' }
google()
mavenCentral()
}
Expand Down
3 changes: 0 additions & 3 deletions lib_cloud/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ android {
versionName project.appVersionName

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

}

buildTypes {
Expand All @@ -21,7 +20,6 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}

}

dependencies {
Expand All @@ -35,5 +33,4 @@ dependencies {

implementation 'com.umeng.umsdk:asms:1.2.2'
implementation 'com.umeng.umsdk:common:9.3.8'

}
2 changes: 0 additions & 2 deletions lib_common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ android {
versionName "1.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

}

compileOptions {
Expand All @@ -27,7 +26,6 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}

}

dependencies {
Expand Down
2 changes: 0 additions & 2 deletions lib_core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ android {
versionName "1.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

}

buildTypes {
Expand All @@ -25,7 +24,6 @@ android {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}

}

dependencies {
Expand Down
8 changes: 5 additions & 3 deletions nga_phone_base_3.0/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
plugins {
id 'com.android.application'
id 'kotlin-android'
}

def static getDate() {
def date = new Date()
def formattedDate = date.format('yyyyMMddHHmm')
return formattedDate

}

def isJenkins() {
Expand Down Expand Up @@ -70,6 +71,7 @@ android {
signingConfig signingConfigs.signingConfig
}
debug {
applicationIdSuffix '.debug'
debuggable true
minifyEnabled false
}
Expand Down

0 comments on commit 0f2f88e

Please sign in to comment.