인수가 다른 여러 디버그 변형을 어떻게 가질 수 있습니까? 인수가 다른 여러 디버그 변형을 어떻게 가질 수 있습니까?
인수가 다른 여러 디버그 변형을 어떻게 가질 수 있습니까?
2022년 3월 21일
댓글: 1
답: 0
0
내 build.gradle
에 다음 변형이 있습니다. buildTypes {
release {
//debuggable true
minifyEnabled false
signingConfig signingConfigs.config
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
buildConfigField "String", "API_URL", "\"https://api.example.com\""
}
debug {
minifyEnabled false
buildConfigField "String", "BASE_URL_PRODUCTION_V4", "\"https://localhost\""
}
staging {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
buildConfigField "String", "API_URL", "\"https://api.example.com\""
}
}
하지만…
Open Full Question
Reference
이 문제에 관하여(인수가 다른 여러 디버그 변형을 어떻게 가질 수 있습니까? 인수가 다른 여러 디버그 변형을 어떻게 가질 수 있습니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/pcmagas/how-i-can-have-multiple-debug-variants-with-different-arfuments-2bd6
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
buildTypes {
release {
//debuggable true
minifyEnabled false
signingConfig signingConfigs.config
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
buildConfigField "String", "API_URL", "\"https://api.example.com\""
}
debug {
minifyEnabled false
buildConfigField "String", "BASE_URL_PRODUCTION_V4", "\"https://localhost\""
}
staging {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
buildConfigField "String", "API_URL", "\"https://api.example.com\""
}
}
Reference
이 문제에 관하여(인수가 다른 여러 디버그 변형을 어떻게 가질 수 있습니까? 인수가 다른 여러 디버그 변형을 어떻게 가질 수 있습니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/pcmagas/how-i-can-have-multiple-debug-variants-with-different-arfuments-2bd6텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)