Kaynağa Gözat

project: Create empty project with WireGuard icon

Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
master
Samuel Holland 7 yıl önce
ebeveyn
işleme
56cf8816d3
13 değiştirilmiş dosya ile 114 ekleme ve 0 silme
  1. +11
    -0
      .gitignore
  2. +26
    -0
      app/build.gradle
  3. +25
    -0
      app/proguard-rules.pro
  4. +12
    -0
      app/src/main/AndroidManifest.xml
  5. BIN
     
  6. BIN
     
  7. BIN
     
  8. BIN
     
  9. BIN
     
  10. +4
    -0
      app/src/main/res/values/strings.xml
  11. +18
    -0
      build.gradle
  12. +17
    -0
      gradle.properties
  13. +1
    -0
      settings.gradle

+ 11
- 0
.gitignore Dosyayı Görüntüle

@@ -0,0 +1,11 @@
/.gradle/
/.idea/
/captures/
/local.properties
.DS_Store
Thumbs.db
build/
*.apk
*.class
*.dex
*.iml

+ 26
- 0
app/build.gradle Dosyayı Görüntüle

@@ -0,0 +1,26 @@
apply plugin: 'com.android.application'

android {
buildToolsVersion "26.0.0"
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileSdkVersion 26
dataBinding {
enabled true
}
defaultConfig {
applicationId "com.wireguard.android"
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}

+ 25
- 0
app/proguard-rules.pro Dosyayı Görüntüle

@@ -0,0 +1,25 @@
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in /opt/android-sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

+ 12
- 0
app/src/main/AndroidManifest.xml Dosyayı Görüntüle

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.wireguard.android">
<application
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher"
android:supportsRtl="true"
android:theme="@android:style/Theme.Material.Light.DarkActionBar">
</application>
</manifest>






+ 4
- 0
app/src/main/res/values/strings.xml Dosyayı Görüntüle

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">WireGuard</string>
</resources>

+ 18
- 0
build.gradle Dosyayı Görüntüle

@@ -0,0 +1,18 @@
allprojects {
repositories {
jcenter()
}
}

buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
}
repositories {
jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

+ 17
- 0
gradle.properties Dosyayı Görüntüle

@@ -0,0 +1,17 @@
# Project-wide Gradle settings.

# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.

# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html

# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx1536m

# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

+ 1
- 0
settings.gradle Dosyayı Görüntüle

@@ -0,0 +1 @@
include ':app'

Yükleniyor…
İptal
Kaydet