This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<application | |
android:banner="@drawable/banner" > | |
... | |
<activity | |
android:name="com.example.android.MainActivity" | |
android:label="@string/app_name" > | |
<intent-filter> | |
<action android:name="android.intent.action.MAIN" /> | |
<category android:name="android.intent.category.LAUNCHER" /> | |
</intent-filter> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<manifest> | |
<uses-feature android:name="android.software.leanback" | |
android:required="false" /> | |
... | |
</manifest> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<manifest> | |
<uses-feature android:name="android.hardware.touchscreen" | |
android:required="false" /> | |
... | |
</manifest> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<automotiveApp> | |
<uses name="media" /> | |
</automotiveApp> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<application> | |
... | |
<meta-data android:name="com.google.android.gms.car.application" | |
android:resource="@xml/automotive_app_desc"/> | |
</application> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var request = require('request'); | |
exports.notifyApprove = (req, res) => { | |
var payload = JSON.parse(req.body.payload) | |
if(payload.action == 'submitted') { | |
if(payload.review.state == 'approved') { | |
handleApprove(res, payload.pull_request); | |
} | |
} else { | |
res.status(200).send(""); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "sample-http", | |
"version": "0.0.1", | |
"dependencies": { | |
"request": "^2.x", | |
"request-promise": "^1.x" | |
} | |
} |