gradle: fix demo build.gradle

This commit is contained in:
Andrew Shu 2014-11-20 12:18:35 -08:00
parent 5447081d17
commit f7589ceee2

View File

@ -11,7 +11,7 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and // See the License for the specific language governing permissions and
// limitations under the License. // limitations under the License.
apply plugin: 'android' apply plugin: 'com.android.application'
android { android {
compileSdkVersion 19 compileSdkVersion 19
@ -23,7 +23,7 @@ android {
} }
buildTypes { buildTypes {
release { release {
runProguard false minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
} }
} }