Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
android_street
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
android
android_street
Commits
2f63540d
Commit
2f63540d
authored
Jul 05, 2021
by
fengruiyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
网络请求测试已完成
parent
47337dfb
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
36 additions
and
40 deletions
+36
-40
compiler.xml
.idea/compiler.xml
+1
-1
gradle.xml
.idea/gradle.xml
+1
-2
misc.xml
.idea/misc.xml
+1
-1
runConfigurations.xml
.idea/runConfigurations.xml
+1
-0
AndroidManifest.xml
app/src/main/AndroidManifest.xml
+3
-5
build.gradle
library_ad/build.gradle
+25
-28
.gitignore
library_base/.gitignore
+2
-1
version.properties
library_base/version.properties
+2
-2
No files found.
.idea/compiler.xml
View file @
2f63540d
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"CompilerConfiguration"
>
<bytecodeTargetLevel
target=
"1
.8
"
/>
<bytecodeTargetLevel
target=
"1
1
"
/>
</component>
</project>
\ No newline at end of file
.idea/gradle.xml
View file @
2f63540d
...
...
@@ -7,7 +7,7 @@
<option
name=
"testRunner"
value=
"PLATFORM"
/>
<option
name=
"distributionType"
value=
"DEFAULT_WRAPPED"
/>
<option
name=
"externalProjectPath"
value=
"$PROJECT_DIR$"
/>
<option
name=
"gradleHome"
value=
"
E:
/android/kfTools/Android Studio/gradle/gradle-2.4"
/>
<option
name=
"gradleHome"
value=
"
$PROJECT_DIR$/../..
/android/kfTools/Android Studio/gradle/gradle-2.4"
/>
<option
name=
"gradleJvm"
value=
"1.8"
/>
<option
name=
"modules"
>
<set>
...
...
@@ -19,7 +19,6 @@
</set>
</option>
<option
name=
"resolveModulePerSourceSet"
value=
"false"
/>
<option
name=
"useQualifiedModuleNames"
value=
"true"
/>
</GradleProjectSettings>
</option>
</component>
...
...
.idea/misc.xml
View file @
2f63540d
...
...
@@ -5,7 +5,7 @@
<configuration
PROFILE_NAME=
"Debug"
CONFIG_NAME=
"Debug"
/>
</configurations>
</component>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_1
_8
"
default=
"true"
project-jdk-name=
"1.8"
project-jdk-type=
"JavaSDK"
>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_1
1
"
default=
"true"
project-jdk-name=
"1.8"
project-jdk-type=
"JavaSDK"
>
<output
url=
"file://$PROJECT_DIR$/build/classes"
/>
</component>
<component
name=
"ProjectType"
>
...
...
.idea/runConfigurations.xml
View file @
2f63540d
...
...
@@ -3,6 +3,7 @@
<component
name=
"RunConfigurationProducerService"
>
<option
name=
"ignoredProducers"
>
<set>
<option
value=
"com.android.tools.idea.compose.preview.runconfiguration.ComposePreviewRunConfigurationProducer"
/>
<option
value=
"org.jetbrains.plugins.gradle.execution.test.runner.AllInPackageGradleConfigurationProducer"
/>
<option
value=
"org.jetbrains.plugins.gradle.execution.test.runner.TestClassGradleConfigurationProducer"
/>
<option
value=
"org.jetbrains.plugins.gradle.execution.test.runner.TestMethodGradleConfigurationProducer"
/>
...
...
app/src/main/AndroidManifest.xml
View file @
2f63540d
...
...
@@ -16,19 +16,17 @@
android:supportsRtl=
"true"
android:theme=
"@style/AppTheme"
android:usesCleartextTraffic=
"true"
>
<activity
android:name=
".main.MainActivity"
>
</activity>
<activity
android:name=
".login.LoginActivity"
>
<intent-filter>
<action
android:name=
"android.intent.action.MAIN"
/>
<category
android:name=
"android.intent.category.LAUNCHER"
/>
</intent-filter>
</activity>
<activity
android:name=
".login.LoginActivity"
>
</activity>
</application>
</manifest>
\ No newline at end of file
library_ad/build.gradle
View file @
2f63540d
...
...
@@ -2,19 +2,22 @@ plugins {
id
'com.android.library'
id
'kotlin-android'
}
apply
from:
"../library.build.gradle"
android
{
compileSdkVersion
30
buildToolsVersion
"30.0.3"
compileSdkVersion
rootProject
.
ext
.
android
.
compileSdkVersion
buildToolsVersion
rootProject
.
ext
.
android
.
buildToolsVersion
defaultConfig
{
minSdkVersion
21
targetSdkVersion
30
versionCode
1
versionName
"1.0"
minSdkVersion
rootProject
.
ext
.
android
.
minSdkVersion
targetSdkVersion
rootProject
.
ext
.
android
.
targetSdkVersion
versionCode
rootProject
.
ext
.
android
.
versionCode
versionName
rootProject
.
ext
.
android
.
versionName
testInstrumentationRunner
"androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles
"consumer-rules.pro"
//
consumerProguardFiles "consumer-rules.pro"
}
buildTypes
{
...
...
@@ -23,13 +26,7 @@ android {
proguardFiles
getDefaultProguardFile
(
'proguard-android-optimize.txt'
),
'proguard-rules.pro'
}
}
compileOptions
{
sourceCompatibility
JavaVersion
.
VERSION_1_8
targetCompatibility
JavaVersion
.
VERSION_1_8
}
kotlinOptions
{
jvmTarget
=
'1.8'
}
}
dependencies
{
...
...
@@ -37,18 +34,18 @@ dependencies {
implementation
fileTree
(
include:
[
'*.jar'
,
'*.aar'
],
dir:
'libs'
)
// 快手
api
(
name:
'kssdk-ad-3.3.9'
,
ext:
'aar'
)
// 穿山甲 GroMore
// mediation_ad_sdk
api
(
name:
'mediation_ad_sdk_2.8.0.2'
,
ext:
'aar'
)
api
(
name:
'gdt_adapter_4.351.1221.3'
,
ext:
'aar'
)
api
(
name:
'ks_adapter_3.3.9.2'
,
ext:
'aar'
)
// 穿山甲广告 版本3.6.1.3
api
(
name:
'open_ad_sdk_3.6.1.3'
,
ext:
'aar'
)
// 广点通广告 腾讯
api
(
name:
'GDTSDK.unionNormal.4.351.1221'
,
ext:
'aar'
)
// OneWay
api
(
name:
'oneway-common-core-1.0.10'
,
ext:
'aar'
)
// 闪电盒子
api
(
name:
'wannuosili_ad_2.2.0'
,
ext:
'aar'
)
//
api(name: 'kssdk-ad-3.3.9', ext: 'aar')
//
// 穿山甲 GroMore
//
// mediation_ad_sdk
//
api(name: 'mediation_ad_sdk_2.8.0.2', ext: 'aar')
//
api(name: 'gdt_adapter_4.351.1221.3', ext: 'aar')
//
api(name: 'ks_adapter_3.3.9.2', ext: 'aar')
//
// 穿山甲广告 版本3.6.1.3
//
api(name: 'open_ad_sdk_3.6.1.3', ext: 'aar')
//
// 广点通广告 腾讯
//
api(name: 'GDTSDK.unionNormal.4.351.1221', ext: 'aar')
//
// OneWay
//
api(name: 'oneway-common-core-1.0.10', ext: 'aar')
//
// 闪电盒子
//
api(name: 'wannuosili_ad_2.2.0', ext: 'aar')
}
\ No newline at end of file
library_base/.gitignore
View file @
2f63540d
/build
\ No newline at end of file
/build
version.properties
\ No newline at end of file
library_base/version.properties
View file @
2f63540d
#Mon Jul 05 1
0:39:48
CST 2021
VERSION_BUILD
=
25
17
#Mon Jul 05 1
1:22:44
CST 2021
VERSION_BUILD
=
25
50
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment