Skip to content

Commit 90c790c

Browse files
committed
Remove section about modifying build files in contributing.md.
1 parent 1325175 commit 90c790c

1 file changed

Lines changed: 0 additions & 38 deletions

File tree

CONTRIBUTING.md

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -41,43 +41,5 @@ To update the wiki, simply navigate to the [wiki tab](https://github.com/octoshr
4141
6. Submit a pull request with your change.
4242
**We have a build action on each pull request, if this build fails, please edit the pull request in order to make the build succeed.**
4343
## Helpful Tips
44-
### [build.gradle](https://github.com/octoshrimpy/quik/blob/master/presentation/build.gradle) configuration for building locally
45-
```
46-
47-
/*
48-
signingConfigs {
49-
release {
50-
def keystoreProps = new Properties()
51-
def keystorePropsFile = rootProject.file('./.gradle/.gradlerc')
52-
storeFile file('./my-release-key.keystore')
53-
keyAlias 'quik_release'
54-
if (keystorePropsFile.exists()) {
55-
keystoreProps.load(new FileInputStream(keystorePropsFile))
56-
} else if (System.getenv("CI") == "true") {
57-
// do nothing
58-
} else {
59-
throw new GradleException("Keystore properties file not found.")
60-
}
61-
storePassword keystoreProps['storePassword']
62-
keyPassword keystoreProps['keyPassword']
63-
}
64-
}
65-
*/
66-
buildTypes {
67-
release {
68-
minifyEnabled true
69-
shrinkResources true
70-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
71-
// signingConfig signingConfigs.release
72-
}
73-
}
74-
75-
productFlavors {
76-
withAnalytics { dimension "analytics" }
77-
noAnalytics {
78-
// signingConfig signingConfigs.release
79-
}
80-
}
81-
```
8244
### Set Java Version
8345
When building QUIK, make sure to download JDK 17 and specify an installation path for it. In Android Studio, you can do that in Settings > Build, Execution, Deployment > Build Tools > Gradle.

0 commit comments

Comments
 (0)