@appshuttle.io/turing
Version:
Code Generation Library used in Shuttle
37 lines (29 loc) • 1.13 kB
JavaScript
class LocalPropertiesTemplates {
constructor() {
/*
LocalProperties STRUCTURE START
*/
// LocalProperties Structure Defaults
this.SDK_DIR_DEFAULT = 'C\\:\\\\Users\\\\danie\\\\AppData\\\\Local\\\\Android\\\\Sdk'
// LocalProperties Structure Holders
this.SDK_DIR_HOLDER = '%sdkDir%'
this.getLocalPropertiesStructure = function () {
return `
## This file is automatically generated by Android Studio.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file should *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
#
# Location of the SDK. This is only used by Gradle.
# For customization when using a Version Control System, please read the
# header note.
sdk.dir=`+this.SDK_DIR_HOLDER+`
`
}
/*
LocalProperties STRUCTURE END
*/
}
}
module.exports = LocalPropertiesTemplates