Skip to content
GitLab
    • Explore Projects Groups Snippets
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • A Android-IMSI-Catcher-Detector
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 162
    • Issues 162
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 5
    • Merge requests 5
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • CellularPrivacy
  • Android-IMSI-Catcher-Detector
  • Merge requests
  • !657
Something went wrong while fetching comments. Please try again.

Fix buildozer

  • Review changes

  • Download
  • Email patches
  • Plain diff
Merged Administrator requested to merge fix/buildozer into development 9 years ago
  • Overview 2
  • Commits 1
  • Pipelines 0
  • Changes 1

Created by: larsgrefer

Compare
  • development (base)

and
  • latest version
    4b532e94
    1 commit, 2 years ago

1 file
+ 14
- 2

    Preferences

    File browser
    Compare changes
app/build.gradle
+ 14
- 2
  • View file @ 4b532e94

  • Edit in single-file editor

  • Open in Web IDE


apply plugin: 'com.android.application'
def gitSha = 'git rev-parse --short HEAD'.execute([], project.rootDir).text.trim()
def gitSha = 'na'
try {
gitSha = 'git rev-parse --short HEAD'.execute([], project.rootDir).text.trim()
} catch (Exception e) {
logger.warn("git not available")
}
android {
compileSdkVersion 21
@@ -10,7 +15,7 @@ android {
minSdkVersion 16
targetSdkVersion 19 // Do not change: Working Icons on Android 5+
versionCode 36
versionName '0.1.36-alpha-' + gitSha
versionName '0.1.36-alpha'
testApplicationId "com.SecUpwN.AIMSICD.test"
}
@@ -26,12 +31,19 @@ android {
} catch (MissingPropertyException e) {
buildConfigField 'String', 'BUILDOZER_BUILDNUMBER', '"NA"'
}
if (!gitSha.equals('na')) {
versionNameSuffix '-' + gitSha
} else {
versionNameSuffix '-debug'
}
}
release {
buildConfigField 'String', 'OPEN_CELLID_API_KEY', '"NA"'
buildConfigField 'String', 'BUILDOZER_BUILDNUMBER', '"NA"'
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
versionNameSuffix '-release'
}
}
signingConfigs {
0 Assignees
None
Assign to
0 Reviewers
None
Request review from
Labels
0
None
0
None
    Assign labels
  • Manage project labels

Milestone
6.1.0
6.1.0 (expired)
None
Time tracking
No estimate or time spent
Lock merge request
Unlocked
0
0 participants
Reference: OpenAPITools/openapi-generator!13277
Source branch: fix/buildozer

Menu

Explore Projects Groups Snippets