blob: 4fe46b5e15b33ecc0dc0114ff7332a7ab9813a56 [file] [log] [blame]
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.build.gradle.integration.common.fixture.app;
import static com.android.build.gradle.integration.common.fixture.GradleTestProject.CUSTOM_JACK;
import static com.android.build.gradle.integration.common.fixture.GradleTestProject.DEFAULT_BUILD_TOOL_VERSION;
import static com.android.build.gradle.integration.common.fixture.GradleTestProject.DEFAULT_COMPILE_SDK_VERSION;
import com.android.annotations.NonNull;
import com.google.common.base.Charsets;
import com.google.common.io.Files;
import java.io.File;
import java.io.IOException;
import java.util.List;
/**
* An Android module, empty (just an empty manifest)
*/
public class AndroidComponentGradleModule extends GradleModule {
public AndroidComponentGradleModule(
@NonNull File moduleDir,
@NonNull String gradlePath,
@NonNull List<? extends GradleModule> projectDeps) {
super(moduleDir, gradlePath, projectDeps);
}
@NonNull
@Override
public String getBuildGradleContent() {
return "apply plugin: 'com.android.model.library'\n" +
"\n" +
"model {\n" +
" android {\n" +
" compileSdkVersion = " + DEFAULT_COMPILE_SDK_VERSION + "\n" +
" buildToolsVersion = '" + DEFAULT_BUILD_TOOL_VERSION + "'\n" +
" defaultConfig.with {\n" +
"// useJack " + CUSTOM_JACK + "\n" +
" }\n" +
" }\n" +
"}\n";
}
@Override
public void createFiles() throws IOException {
File root = getModuleDir();
File src = new File(root, "src");
File main = new File(src, "main");
main.mkdirs();
File manifest = new File(main, "AndroidManifest.xml");
Files.write(
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n" +
"<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n" +
" package=\"com" + getGradlePath().replace(':', '.') + "\" />\n",
manifest,
Charsets.UTF_8);
}
}