Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 74626e4

Browse files
committed
2 parents e2ddf2b + 710c33f commit 74626e4

31 files changed

+158
-53
lines changed

.idea/compiler.xml

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 0 additions & 36 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ android {
44
compileSdkVersion 27
55
defaultConfig {
66
applicationId "com.example.feifei.myexamplecode"
7+
buildToolsVersion "24.0.1"
78
minSdkVersion 15
89
targetSdkVersion 27
910
versionCode 1
@@ -16,12 +17,9 @@ android {
1617
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
1718
}
1819
}
20+
buildToolsVersion '25.0.0'
1921
}
2022

2123
dependencies {
22-
implementation fileTree(dir: 'libs', include: ['*.jar'])
23-
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
24-
testImplementation 'junit:junit:4.12'
25-
androidTestImplementation 'com.android.support.test:runner:1.0.1'
26-
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
24+
2725
}

app/src/main/AndroidManifest.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
android:allowBackup="true"
77
android:icon="@mipmap/ic_launcher"
88
android:label="@string/app_name"
9-
android:roundIcon="@mipmap/ic_launcher_round"
109
android:supportsRtl="true"
1110
android:theme="@style/AppTheme">
1211
<activity android:name=".MainActivity">

app/src/main/res/layout/activity_main.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
2+
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:app="http://schemas.android.com/apk/res-auto"
44
xmlns:tools="http://schemas.android.com/tools"
55
android:layout_width="match_parent"
@@ -15,4 +15,4 @@
1515
app:layout_constraintRight_toRightOf="parent"
1616
app:layout_constraintTop_toTopOf="parent" />
1717

18-
</android.support.constraint.ConstraintLayout>
18+
</LinearLayout>

audiorecoder/build.gradle

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ android {
77

88
defaultConfig {
99
applicationId "com.example.audiorecoder"
10+
buildToolsVersion '24.0.1'
1011
minSdkVersion 15
1112
targetSdkVersion 21
1213
versionCode 1
@@ -23,13 +24,10 @@ android {
2324
}
2425
}
2526

27+
buildToolsVersion '25.0.0'
2628
}
2729

2830
dependencies {
29-
implementation fileTree(dir: 'libs', include: ['*.jar'])
31+
fileTree(dir: 'libs', include: ['*.jar'])
3032

31-
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
32-
testImplementation 'junit:junit:4.12'
33-
androidTestImplementation 'com.android.support.test:runner:1.0.1'
34-
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
3533
}

audiorecoder/src/main/AndroidManifest.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
android:allowBackup="true"
1111
android:icon="@mipmap/ic_launcher"
1212
android:label="@string/app_name"
13-
android:roundIcon="@mipmap/ic_launcher_round"
1413
android:supportsRtl="true"
1514
android:theme="@style/AppTheme">
1615
<activity android:name=".MainActivity"

0 commit comments

Comments
 (0)